Variable: archive-squashfs-extract

archive-squashfs-extract is a customizable variable defined in arc-mode.el.gz.

Value

("rdsquashfs" "-c")

Documentation

Program and its options to run in order to extract a squashsfs file member.

Extraction should happen to standard output. Archive and member name will be added.

This variable was added, or its default value changed, in Emacs 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/arc-mode.el.gz
(defcustom archive-squashfs-extract '("rdsquashfs" "-c")
  "Program and its options to run in order to extract a squashsfs file member.
Extraction should happen to standard output.  Archive and member name will
be added."
  :type '(list (string :tag "Program")
	       (repeat :tag "Options"
		       :inline t
		       (string :format "%v")))
  :version "28.1"
  :group 'archive-squashfs)