Function: bat-run-args
bat-run-args is an interactive and byte-compiled function defined in
bat-mode.el.gz.
Signature
(bat-run-args ARGS)
Documentation
Run a batch file with ARGS.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/bat-mode.el.gz
(defun bat-run-args (args)
"Run a batch file with ARGS."
(interactive "sArgs: ")
;; FIXME: Use `compile'?
(shell-command (concat buffer-file-name " " args)))