Variable: ex-unix-type-shell-options
ex-unix-type-shell-options is a customizable variable defined in
viper-ex.el.gz.
Value
nil
Documentation
Options to pass to the Unix-style shell.
Don't put -c here, as it is added automatically.
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-ex.el.gz
(defcustom ex-unix-type-shell-options
(let ((case-fold-search t))
(if ex-unix-type-shell
(cond ((string-match "\\(csh$\\|csh.exe$\\)" shell-file-name)
"-f") ; csh: do it fast
((string-match "\\(bash$\\|bash.exe$\\)" shell-file-name)
"-noprofile") ; bash: ignore .profile
)))
"Options to pass to the Unix-style shell.
Don't put `-c' here, as it is added automatically."
:type '(choice (const nil) string))