Variable: tramp-encoding-command-switch
tramp-encoding-command-switch is a customizable variable defined in
tramp.el.gz.
Value
"-c"
Documentation
Use this switch together with tramp-encoding-shell for local commands.
See the variable tramp-encoding-shell for more information.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
;; Suppress `shell-file-name' for w32 systems.
(defcustom tramp-encoding-command-switch
(let (shell-file-name)
(if (tramp-compat-funcall 'w32-shell-dos-semantics) "/c" "-c"))
"Use this switch together with `tramp-encoding-shell' for local commands.
See the variable `tramp-encoding-shell' for more information."
:type 'string)