Variable: tramp-inline-compress-commands

tramp-inline-compress-commands is a variable defined in tramp-sh.el.gz.

Value

(("env GZIP= gzip" "env GZIP= gzip -d") ("bzip2" "bzip2 -d")
 ("xz" "xz -d") ("zstd --rm" "zstd -d --rm")
 ("compress" "compress -d"))

Documentation

List of compress and decompress commands for inline transfer.

Each item is a list that looks like this:

(COMPRESS DECOMPRESS)

COMPRESS or DECOMPRESS are strings with the respective commands.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-sh.el.gz
(defconst tramp-inline-compress-commands
  '(;; Suppress warnings about obsolete environment variable GZIP.
    ("env GZIP= gzip" "env GZIP= gzip -d")
    ("bzip2" "bzip2 -d")
    ("xz" "xz -d")
    ("zstd --rm" "zstd -d --rm")
    ("compress" "compress -d"))
  "List of compress and decompress commands for inline transfer.
Each item is a list that looks like this:

\(COMPRESS DECOMPRESS)

COMPRESS or DECOMPRESS are strings with the respective commands.")