Created
October 13, 2011 03:51
-
-
Save milkypostman/1283328 to your computer and use it in GitHub Desktop.
Shell Command Function in Elisp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun shell-command-on-region-to-string (start end command) | |
(with-output-to-string | |
(shell-command-on-region start end command standard-output))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment