Grep on results of grep from emacs

1 · Shane Mulligan · June 16, 2020, 4 p.m.
1 2 3 (defun grep-ead-on-results (paths query) (interactive (list (selection-or-buffer-string) (read-string "ead:"))) (sps (concat "ead " query) "" (sn "sed -n '/:[0-9]/s/^\\([^:]*\\):.*/\\1/p' | uniqnosort" paths))) 1 (defset grep-mode-funcs (list 'grep-ead-on-results)) Testing it out I want to find a docker container wrapper that has both --entrypoint and sets a variable called dn. This one was found. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 #!...