Variable: gnus-uu-default-archive-rules

gnus-uu-default-archive-rules is a customizable variable defined in gnus-uu.el.gz.

Value

(("\\.tar$" "tar xf")
 ("\\.zip$" "unzip -o")
 ("\\.ar$" "ar x")
 ("\\.arj$" "unarj x")
 ("\\.zoo$" "zoo -e")
 ("\\.\\(lzh\\|lha\\)$" "lha x")
 ("\\.Z$" "uncompress")
 ("\\.gz$" "gunzip")
 ("\\.arc$" "arc -x"))

Documentation

See gnus-uu-user-archive-rules.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
;; Default unpacking commands

(defcustom gnus-uu-default-archive-rules
  '(("\\.tar$" "tar xf")
    ("\\.zip$" "unzip -o")
    ("\\.ar$" "ar x")
    ("\\.arj$" "unarj x")
    ("\\.zoo$" "zoo -e")
    ("\\.\\(lzh\\|lha\\)$" "lha x")
    ("\\.Z$" "uncompress")
    ("\\.gz$" "gunzip")
    ("\\.arc$" "arc -x"))
  "See `gnus-uu-user-archive-rules'."
  :group 'gnus-extract-archive
  :type '(repeat (group regexp (string :tag "Command"))))