Function: start-file-process-shell-command

start-file-process-shell-command is a byte-compiled function defined in subr.el.gz.

Signature

(start-file-process-shell-command NAME BUFFER COMMAND)

Documentation

Start a program in a subprocess. Return the process object for it.

Similar to start-process-shell-command, but calls start-file-process.

View in manual

Probably introduced at or before Emacs version 23.1.

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun start-file-process-shell-command (name buffer command)
  "Start a program in a subprocess.  Return the process object for it.
Similar to `start-process-shell-command', but calls `start-file-process'."
  ;; On remote hosts, the local `shell-file-name' might be useless.
  (with-connection-local-variables
   (start-file-process
    name buffer shell-file-name shell-command-switch command)))