;;; shell-command+.el --- An extended shell-command -*- lexical-binding: t -*- ;; Author: Philip K. ;; Version: 1.0.3 ;; Keywords: unix, processes, convenience ;; Package-Requires: ((emacs "24.1")) ;; URL: http://elpa.gnu.org/packages/shell-command+.html ;; This file is NOT part of Emacs. ;; ;; This file is in the public domain, to the extent possible under law, ;; published under the CC0 1.0 Universal license. ;; ;; For a full copy of the CC0 license see ;; https://creativecommons.org/publicdomain/zero/1.0/legalcode ;;; Commentary: ;; ;; `shell-command+' is a `shell-command' substitute, that extends the ;; regular Emacs command with several features. ;; ;; A few examples of what `shell-command+' can do: ;; ;; ;; > wc -l ;; ;; Count all lines in a buffer, and display the result in the ;; minibuffer. ;; ;; ;; .. < ls -l ;; ;; Replace the current region (or buffer in no region is selected) ;; with a directory listing of the parent directory. ;; ;; ;; | tr -d a-z ;; ;; Delete all instances of the charachters a, b, c, ..., z, in the ;; selected region (or buffer, if no region was selected). ;; ;; ;; ... make ;; ;; Run Eshell's make (i.e. `compile') in the parent's parent ;; directory. (eval-when-compile (require 'rx)) (require 'eshell) ;;; Code: (defgroup shell-command+ nil "An extended `shell-command'" :group 'external :prefix "shell-command+-") (defcustom shell-command+-use-eshell t "Check if there is an eshell-handler for each command." :type 'boolean) (defconst shell-command+--command-regexp (rx bos ;; ignore all preceding whitespace (* space) ;; check for working directory string (? (group (or (: ?. (not (any "/"))) ?/ ?~) (* (not space))) (+ space)) ;; check for redirection indicator (? (or (group ?<) (group ?>) (group ?|) ?!)) ;; allow whitespace after indicator (* space) ;; actual command (and command name) (group (: (group (*? not-newline)) (? space)) (+ not-newline)) eos) "Regular expression to parse `shell-command+' input.") (defun shell-command+-expand-path (path) "Expand any PATH into absolute path with additional tricks. Furthermore, replace each sequence with three or more `.'s with a proper upwards directory pointers. This means that '....' becomes '../../../..', and so on." (expand-file-name (replace-regexp-in-string (rx (>= 2 ".")) (lambda (sub) (mapconcat #'identity (make-list (1- (length sub)) "..") "/")) path))) ;;;###autoload (defun shell-command+ (command beg end) "Intelligently execute string COMMAND in inferior shell. If COMMAND is prefixed with an absolute or relative path, the created process will the executed in the specified path. When COMMAND starts with... < the output of COMMAND replaces the current selection > COMMAND is run with the current selection as input | the current selection is filtered through COMMAND ! COMMAND is simply executed (same as without any prefix) If `shell-command+-use-eshell' is non-nil, and the the first argument of COMMAND has a defined `eshell'-function, use that. Inside COMMAND, % is replaced with the current file name. To insert a literal % quote it using a backslash. These extentions can all be combined with one-another. In case a region is active, `shell-command+' will only work with the region between BEG and END. Otherwise the whole buffer is processed." (interactive (list (read-shell-command "Shell command: ") (if (use-region-p) (region-beginning) (point-min)) (if (use-region-p) (region-end) (point-max)))) (save-match-data (unless (string-match shell-command+--command-regexp command) (error "Invalid command")) (let ((path (match-string-no-properties 1 command)) (cmd (match-string-no-properties 6 command)) (rest (condition-case nil (replace-regexp-in-string (rx (* ?\\ ?\\) (or ?\\ (group "%"))) buffer-file-name (match-string-no-properties 5 command) nil nil 1) (error (match-string-no-properties 5 command))))) (let ((default-directory (shell-command+-expand-path (or path ".")))) (cond ((match-string-no-properties 2 command) ;< (delete-region beg end) (shell-command rest t shell-command-default-error-buffer) (exchange-point-and-mark)) ((match-string-no-properties 3 command) ;> (shell-command-on-region beg end rest nil nil shell-command-default-error-buffer t)) ((match-string-no-properties 4 command) ;| (shell-command-on-region beg end rest t t shell-command-default-error-buffer t)) ((and shell-command+-use-eshell (intern-soft (concat "eshell/" cmd))) (eshell-command rest (and current-prefix-arg t))) (t (shell-command rest (and current-prefix-arg t) shell-command-default-error-buffer))))))) (provide 'shell-command+) ;;; shell-command+.el ends here