Mercurial > emacs
annotate lisp/find-dired.el @ 11552:c20207bd74a8
(rmail-insert-inbox-text): Get the truename of
the standard inbox name, not just of its directory.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 25 Apr 1995 04:09:47 +0000 |
parents | 97da4cb32d03 |
children | e28ae3856c1d |
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 |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
3 ;;; Copyright (C) 1992, 1994, 1995 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> |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: unix |
294 | 8 |
11035 | 9 (defconst find-dired-version (substring "$Revision: 1.19 $" 11 -2) |
10 "$Id: find-dired.el,v 1.19 1995/03/06 19:55:47 roland Exp rms $") | |
294 | 11 |
292 | 12 ;;; This program is free software; you can redistribute it and/or modify |
13 ;;; it under the terms of the GNU General Public License as published by | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
14 ;;; the Free Software Foundation; either version 2, or (at your option) |
292 | 15 ;;; any later version. |
16 ;;; | |
17 ;;; This program is distributed in the hope that it will be useful, | |
18 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;;; GNU General Public License for more details. | |
21 ;;; | |
22 ;;; A copy of the GNU General Public License can be obtained from this | |
23 ;;; program's author (send electronic mail to roland@ai.mit.edu) or from | |
24 ;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA | |
25 ;;; 02139, USA. | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
26 ;;; |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
27 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
28 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
29 |
292 | 30 (require 'dired) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
31 |
11035 | 32 ;; find's -ls corresponds to these switches. |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
33 ;; Note -b, at least GNU find quotes spaces etc. in filenames |
474 | 34 ;;;###autoload |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
35 (defvar find-ls-option (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
36 '("-exec ls -ld {} \\;" . "-ld")) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
37 "*Description of the option to `find' to produce an `ls -l'-type listing. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
38 This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
39 gives the option (or options) to `find' that produce the desired output. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
40 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.") |
474 | 41 |
42 ;;;###autoload | |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
43 (defvar find-grep-options (if (eq system-type 'berkeley-unix) "-s" "-q") |
474 | 44 "*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
|
45 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
|
46 On other systems, the closest you can come is to use `-l'.") |
292 | 47 |
48 (defvar find-args nil | |
49 "Last arguments given to `find' by \\[find-dired].") | |
50 | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
51 ;; History of find-args values entered in the minibuffer. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
52 (defvar find-args-history nil) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
53 |
292 | 54 ;;;###autoload |
55 (defun find-dired (dir args) | |
56 "Run `find' and go into dired-mode on a buffer of the output. | |
474 | 57 The command run (after changing into DIR) is |
58 | |
59 find . \\( ARGS \\) -ls" | |
292 | 60 (interactive (list (read-file-name "Run find in directory: " nil "" t) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
61 (read-string "Run find (with args): " find-args |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
62 '(find-args-history . 1)))) |
474 | 63 ;; Expand DIR ("" means default-directory), and make sure it has a |
64 ;; trailing slash. | |
292 | 65 (setq dir (file-name-as-directory (expand-file-name dir))) |
66 ;; Check that it's really a directory. | |
67 (or (file-directory-p dir) | |
474 | 68 (error "find-dired needs a directory: %s" dir)) |
292 | 69 (switch-to-buffer (get-buffer-create "*Find*")) |
70 (widen) | |
71 (kill-all-local-variables) | |
72 (setq buffer-read-only nil) | |
73 (erase-buffer) | |
74 (setq default-directory dir | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
75 find-args args ; save for next interactive call |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
76 args (concat "find . " |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
77 (if (string= args "") |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
78 "" |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
79 (concat "\\( " args " \\) ")) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
80 (car find-ls-option))) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
81 ;; The next statement will bomb in classic dired (no optional arg allowed) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
82 (dired-mode dir (cdr find-ls-option)) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
83 ;; Set subdir-alist so that Tree Dired will work: |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
84 (dired-simple-subdir-alist) |
474 | 85 (setq buffer-read-only nil) |
86 ;; Subdir headlerline must come first because the first marker in | |
87 ;; subdir-alist points there. | |
88 (insert " " dir ":\n") | |
89 ;; Make second line a ``find'' line in analogy to the ``total'' or | |
90 ;; ``wildcard'' line. | |
91 (insert " " args "\n") | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
92 ;; Start the find process. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
93 (let ((proc (start-process-shell-command "find" (current-buffer) args))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
94 (set-process-filter proc (function find-dired-filter)) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
95 (set-process-sentinel proc (function find-dired-sentinel)) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
96 ;; Initialize the process marker; it is used by the filter. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
97 (move-marker (process-mark proc) 1 (current-buffer))) |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
98 (setq mode-line-process '(":%s"))) |
292 | 99 |
100 ;;;###autoload | |
101 (defun find-name-dired (dir pattern) | |
102 "Search DIR recursively for files matching the globbing pattern PATTERN, | |
474 | 103 and run dired on those files. |
104 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | |
105 The command run (after changing into DIR) is | |
106 | |
107 find . -name 'PATTERN' -ls" | |
108 (interactive | |
109 "DFind-name (directory): \nsFind-name (filename wildcard): ") | |
292 | 110 (find-dired dir (concat "-name '" pattern "'"))) |
111 | |
474 | 112 ;; This functionality suggested by |
113 ;; From: oblanc@watcgl.waterloo.edu (Olivier Blanc) | |
114 ;; Subject: find-dired, lookfor-dired | |
115 ;; Date: 10 May 91 17:50:00 GMT | |
116 ;; Organization: University of Waterloo | |
117 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2230
diff
changeset
|
118 (defalias 'lookfor-dired 'find-grep-dired) |
474 | 119 ;;;###autoload |
120 (defun find-grep-dired (dir args) | |
121 "Find files in DIR containing a regexp ARG and start Dired on output. | |
122 The command run (after changing into DIR) is | |
123 | |
124 find . -exec grep -s ARG {} \\\; -ls | |
125 | |
126 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
|
127 (interactive "DFind-grep (directory): \nsFind-grep (grep regexp): ") |
474 | 128 ;; find -exec doesn't allow shell i/o redirections in the command, |
129 ;; or we could use `grep -l >/dev/null' | |
130 (find-dired dir | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
131 (concat "! -type d -exec grep " find-grep-options " " |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
132 args " {} \\\; "))) |
474 | 133 |
292 | 134 (defun find-dired-filter (proc string) |
135 ;; Filter for \\[find-dired] processes. | |
294 | 136 (let ((buf (process-buffer proc))) |
137 (if (buffer-name buf) ; not killed? | |
138 (save-excursion | |
139 (set-buffer buf) | |
140 (save-restriction | |
141 (widen) | |
142 (save-excursion | |
143 (let ((buffer-read-only nil) | |
144 (end (point-max))) | |
145 (goto-char end) | |
146 (insert string) | |
147 (goto-char end) | |
148 (or (looking-at "^") | |
149 (forward-line 1)) | |
150 (while (looking-at "^") | |
151 (insert " ") | |
474 | 152 (forward-line 1)) |
153 ;; Convert ` ./FILE' to ` FILE' | |
154 ;; This would lose if the current chunk of output | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
155 ;; starts or ends within the ` ./', so back up a bit: |
474 | 156 (goto-char (- end 3)) ; no error if < 0 |
157 (while (search-forward " ./" nil t) | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
158 (delete-region (point) (- (point) 2))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
159 ;; Find all the complete lines in the unprocessed |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
160 ;; output and process it to add text properties. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
161 (goto-char end) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
162 (if (search-backward "\n" (process-mark proc) t) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
163 (progn |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
164 (dired-insert-set-properties (process-mark proc) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
165 (1+ (point))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
166 (move-marker (process-mark proc) (1+ (point))))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
167 )))) |
294 | 168 ;; The buffer has been killed. |
169 (delete-process proc)))) | |
292 | 170 |
171 (defun find-dired-sentinel (proc state) | |
172 ;; Sentinel for \\[find-dired] processes. | |
294 | 173 (let ((buf (process-buffer proc))) |
174 (if (buffer-name buf) | |
175 (save-excursion | |
176 (set-buffer buf) | |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
177 (let ((buffer-read-only nil)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
178 (save-excursion |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
179 (goto-char (point-max)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
180 (insert "\nfind " state) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
181 (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
|
182 (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
|
183 (forward-char 1) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
184 (setq mode-line-process |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
185 (concat ":" |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
186 (symbol-name (process-status proc)))) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
187 ;; 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
|
188 ;; 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
|
189 ;; 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
|
190 (delete-process proc) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
191 ;; Force mode line redisplay soon. |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
192 (set-buffer-modified-p (buffer-modified-p)))) |
294 | 193 (message "find-dired %s finished." (current-buffer)))))) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
194 |
584 | 195 (provide 'find-dired) |
196 | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
197 ;;; find-dired.el ends here |