Variable: archive-zip-extract

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

Value

("unzip" "-qq" "-c")

Documentation

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

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

Source Code

;; Defined in /usr/src/emacs/lisp/arc-mode.el.gz
(defcustom archive-zip-extract
  (cond ((executable-find "unzip")   '("unzip" "-qq" "-c"))
	(archive-7z-program          `(,archive-7z-program "x" "-so"))
	((executable-find "pkunzip") '("pkunzip" "-e" "-o-"))
	(t                           '("unzip" "-qq" "-c")))
  "Program and its options to run in order to extract a zip 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"))))