Mercurial > emacs
annotate lisp/find-dired.el @ 10398:4a9bc1042dbc
(DONT_COPY_FLAG): Fix typo.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 11 Jan 1995 03:00:32 +0000 |
parents | 64163654c255 |
children | 8102a6447ea0 |
rev | line source |
---|---|
2230
6314334d7c2b
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1225
diff
changeset
|
1 ;;; find-dired.el --- run a `find' command and dired the output |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
7300 | 3 ;;; Copyright (C) 1992, 1994 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
5 ;; Author: Roland McGrath <roland@gnu.ai.mit.edu>, |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
6 ;; Sebastian Kremer <sk@thp.uni-koeln.de> |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
7 ;; Maintainer: Sebastian Kremer <sk@thp.uni-koeln.de> |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
8 ;; Keywords: unix |
294 | 9 |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
10 (defconst find-dired-version (substring "$Revision: 1.17 $" 11 -2) |
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
11 "$Id: find-dired.el,v 1.17 1994/11/19 14:03:23 rms Exp rms $") |
294 | 12 |
292 | 13 ;;; This program is free software; you can redistribute it and/or modify |
14 ;;; it under the terms of the GNU General Public License as published by | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
15 ;;; the Free Software Foundation; either version 1, or (at your option) |
292 | 16 ;;; any later version. |
17 ;;; | |
18 ;;; This program is distributed in the hope that it will be useful, | |
19 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;;; GNU General Public License for more details. | |
22 ;;; | |
23 ;;; A copy of the GNU General Public License can be obtained from this | |
24 ;;; program's author (send electronic mail to roland@ai.mit.edu) or from | |
25 ;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA | |
26 ;;; 02139, USA. | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
27 ;;; |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
28 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
29 ;;; Commentary: |
474 | 30 |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
31 ;; LISPDIR ENTRY for the Elisp Archive =============================== |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
32 ;; LCD Archive Entry: |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
33 ;; find-dired|Roland McGrath, Sebastian Kremer |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
34 ;; |roland@gnu.ai.mit.edu, sk@thp.uni-koeln.de |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
35 ;; |Run a `find' command and dired the output |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
36 ;; |$Date: 1994/11/19 14:03:23 $|$Revision: 1.17 $| |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
37 |
474 | 38 ;; INSTALLATION ====================================================== |
39 | |
40 ;; To use this file, byte-compile it, install it somewhere in your | |
41 ;; load-path, and put: | |
294 | 42 |
474 | 43 ;; (autoload 'find-dired "find-dired" nil t) |
44 ;; (autoload 'find-name-dired "find-dired" nil t) | |
45 ;; (autoload 'find-grep-dired "find-dired" nil t) | |
46 | |
47 ;; in your ~/.emacs, or site-init.el, etc. | |
48 | |
49 ;; To bind it to a key, put, e.g.: | |
50 ;; | |
51 ;; (global-set-key "\C-cf" 'find-dired) | |
52 ;; (global-set-key "\C-cn" 'find-name-dired) | |
53 ;; (global-set-key "\C-cl" 'find-grep-dired) | |
54 ;; | |
55 ;; in your ~/.emacs. | |
292 | 56 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
57 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
58 |
292 | 59 (require 'dired) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
60 |
474 | 61 ;;;###autoload |
62 (defvar find-ls-option (if (eq system-type 'berkeley-unix) "-ls" | |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
63 "-exec ls -ld {} \\;") |
474 | 64 "*Option to `find' to produce an `ls -l'-type listing.") |
65 | |
66 ;;;###autoload | |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
67 (defvar find-grep-options (if (eq system-type 'berkeley-unix) "-s" "-q") |
474 | 68 "*Option to grep to be as silent as possible. |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
69 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. |
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
70 On other systems, the closest you can come is to use `-l'.") |
292 | 71 |
72 (defvar find-args nil | |
73 "Last arguments given to `find' by \\[find-dired].") | |
74 | |
75 ;;;###autoload | |
76 (defun find-dired (dir args) | |
77 "Run `find' and go into dired-mode on a buffer of the output. | |
474 | 78 The command run (after changing into DIR) is |
79 | |
80 find . \\( ARGS \\) -ls" | |
292 | 81 (interactive (list (read-file-name "Run find in directory: " nil "" t) |
294 | 82 (if (featurep 'gmhist) |
83 (read-with-history-in 'find-args-history | |
84 "Run find (with args): ") | |
85 (read-string "Run find (with args): " find-args)))) | |
474 | 86 ;; Expand DIR ("" means default-directory), and make sure it has a |
87 ;; trailing slash. | |
292 | 88 (setq dir (file-name-as-directory (expand-file-name dir))) |
89 ;; Check that it's really a directory. | |
90 (or (file-directory-p dir) | |
474 | 91 (error "find-dired needs a directory: %s" dir)) |
292 | 92 (switch-to-buffer (get-buffer-create "*Find*")) |
93 (widen) | |
94 (kill-all-local-variables) | |
95 (setq buffer-read-only nil) | |
96 (erase-buffer) | |
97 (setq default-directory dir | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
98 find-args args ; save for next interactive call |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
99 args (concat "find . " |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
100 (if (string= args "") |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
101 "" |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
102 (concat "\\( " args " \\) ")) |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
103 find-ls-option)) |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
104 ;; The next statement will bomb in classic dired (no optional arg allowed) |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
105 ;; find(1)'s -ls corresponds to these switches. |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
106 ;; Note -b, at least GNU find quotes spaces etc. in filenames |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
107 (dired-mode dir "-gilsb") |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
108 ;; Set subdir-alist so that Tree Dired will work: |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
109 (if (fboundp 'dired-simple-subdir-alist) |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
110 ;; will work even with nested dired format (dired-nstd.el,v 1.15 |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
111 ;; and later) |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
112 (dired-simple-subdir-alist) |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
113 ;; else we have an ancient tree dired (or classic dired, where |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
114 ;; this does no harm) |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
115 (set (make-local-variable 'dired-subdir-alist) |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
116 (list (cons default-directory (point-min-marker))))) |
474 | 117 (setq buffer-read-only nil) |
118 ;; Subdir headlerline must come first because the first marker in | |
119 ;; subdir-alist points there. | |
120 (insert " " dir ":\n") | |
121 ;; Make second line a ``find'' line in analogy to the ``total'' or | |
122 ;; ``wildcard'' line. | |
123 (insert " " args "\n") | |
124 ;; Start the find process | |
292 | 125 (set-process-filter (start-process-shell-command "find" |
126 (current-buffer) args) | |
474 | 127 (function find-dired-filter)) |
292 | 128 (set-process-sentinel (get-buffer-process (current-buffer)) |
474 | 129 (function find-dired-sentinel)) |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
130 (setq mode-line-process '(":%s"))) |
292 | 131 |
132 ;;;###autoload | |
133 (defun find-name-dired (dir pattern) | |
134 "Search DIR recursively for files matching the globbing pattern PATTERN, | |
474 | 135 and run dired on those files. |
136 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | |
137 The command run (after changing into DIR) is | |
138 | |
139 find . -name 'PATTERN' -ls" | |
140 (interactive | |
141 "DFind-name (directory): \nsFind-name (filename wildcard): ") | |
292 | 142 (find-dired dir (concat "-name '" pattern "'"))) |
143 | |
474 | 144 ;; This functionality suggested by |
145 ;; From: oblanc@watcgl.waterloo.edu (Olivier Blanc) | |
146 ;; Subject: find-dired, lookfor-dired | |
147 ;; Date: 10 May 91 17:50:00 GMT | |
148 ;; Organization: University of Waterloo | |
149 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2230
diff
changeset
|
150 (defalias 'lookfor-dired 'find-grep-dired) |
474 | 151 ;;;###autoload |
152 (defun find-grep-dired (dir args) | |
153 "Find files in DIR containing a regexp ARG and start Dired on output. | |
154 The command run (after changing into DIR) is | |
155 | |
156 find . -exec grep -s ARG {} \\\; -ls | |
157 | |
158 Thus ARG can also contain additional grep options." | |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
159 (interactive "DFind-grep (directory): \nsFind-grep (grep regexp): ") |
474 | 160 ;; find -exec doesn't allow shell i/o redirections in the command, |
161 ;; or we could use `grep -l >/dev/null' | |
162 (find-dired dir | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
163 (concat "! -type d -exec grep " find-grep-options " " |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
164 args " {} \\\; "))) |
474 | 165 |
292 | 166 (defun find-dired-filter (proc string) |
167 ;; Filter for \\[find-dired] processes. | |
294 | 168 (let ((buf (process-buffer proc))) |
169 (if (buffer-name buf) ; not killed? | |
170 (save-excursion | |
171 (set-buffer buf) | |
172 (save-restriction | |
173 (widen) | |
174 (save-excursion | |
175 (let ((buffer-read-only nil) | |
176 (end (point-max))) | |
177 (goto-char end) | |
178 (insert string) | |
179 (goto-char end) | |
180 (or (looking-at "^") | |
181 (forward-line 1)) | |
182 (while (looking-at "^") | |
183 (insert " ") | |
474 | 184 (forward-line 1)) |
185 ;; Convert ` ./FILE' to ` FILE' | |
186 ;; This would lose if the current chunk of output | |
187 ;; starts or ends within the ` ./', so backup up a bit: | |
188 (goto-char (- end 3)) ; no error if < 0 | |
189 (while (search-forward " ./" nil t) | |
190 (delete-region (point) (- (point) 2))))))) | |
294 | 191 ;; The buffer has been killed. |
192 (delete-process proc)))) | |
292 | 193 |
194 (defun find-dired-sentinel (proc state) | |
195 ;; Sentinel for \\[find-dired] processes. | |
294 | 196 (let ((buf (process-buffer proc))) |
197 (if (buffer-name buf) | |
198 (save-excursion | |
199 (set-buffer buf) | |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
200 (let ((buffer-read-only nil)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
201 (save-excursion |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
202 (goto-char (point-max)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
203 (insert "\nfind " state) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
204 (forward-char -1) ;Back up before \n at end of STATE. |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
205 (insert " at " (substring (current-time-string) 0 19)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
206 (forward-char 1) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
207 (setq mode-line-process |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
208 (concat ":" |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
209 (symbol-name (process-status proc)))) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
210 ;; Since the buffer and mode line will show that the |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
211 ;; process is dead, we can delete it now. Otherwise it |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
212 ;; will stay around until M-x list-processes. |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
213 (delete-process proc) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
214 ;; Force mode line redisplay soon. |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
215 (set-buffer-modified-p (buffer-modified-p)))) |
294 | 216 (message "find-dired %s finished." (current-buffer)))))) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
217 |
584 | 218 (provide 'find-dired) |
219 | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
220 ;;; find-dired.el ends here |