blob: 07ce9f8d681ea1b60dd55f036ecb8d45f04ecfe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(defun ceg/show-urls (what)
"Run show-urls and grep for WHAT."
(interactive "sUrl: ")
(shell-command (concat "python " ceg/manage-bin " show_urls --no-color | grep '" what "'")
(concat "*URL<" what ">")))
(defun my/show-urls (what)
"Run show_urls and grep for WHAT."
(interactive "sUrl: ")
(let ((command (concat "python " ceg/manage-bin " show_urls --no-color | grep '" what "'"))
(buf (concat "*URL<" what ">")))
))
|