Function: filesets-which-command

filesets-which-command is a byte-compiled function defined in filesets.el.gz.

Signature

(filesets-which-command CMD)

Documentation

Call "which CMD".

Source Code

;; Defined in /usr/src/emacs/lisp/filesets.el.gz
(defun filesets-which-command (cmd)
  "Call \"which CMD\"."
  (shell-command-to-string (format "which %s" cmd)))