Variable: TeX-shell
TeX-shell is a customizable variable defined in tex.el.
Value
"/bin/sh"
Documentation
Name of shell used to parse TeX commands.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-shell
(if (memq system-type '(ms-dos emx windows-nt))
shell-file-name
"/bin/sh")
"Name of shell used to parse TeX commands."
:group 'TeX-command
:type 'file)