]> code.delx.au - gnu-emacs/blob - man/dired.texi
*** empty log message ***
[gnu-emacs] / man / dired.texi
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000
3 @c Free Software Foundation, Inc.
4 @c See file emacs.texi for copying conditions.
5 @node Dired, Calendar/Diary, Rmail, Top
6 @chapter Dired, the Directory Editor
7 @cindex Dired
8 @cindex file management
9
10 Dired makes an Emacs buffer containing a listing of a directory, and
11 optionally some of its subdirectories as well. You can use the normal
12 Emacs commands to move around in this buffer, and special Dired commands
13 to operate on the files listed.
14
15 @menu
16 * Enter: Dired Enter. How to invoke Dired.
17 * Commands: Dired Commands. Commands in the Dired buffer.
18 * Deletion: Dired Deletion. Deleting files with Dired.
19 * Flagging Many Files:: Flagging files based on their names.
20 * Visit: Dired Visiting. Other file operations through Dired.
21 * Marks vs Flags:: Flagging for deletion vs marking.
22 * Operating on Files:: How to copy, rename, print, compress, etc.
23 either one file or several files.
24 * Shell Commands in Dired:: Running a shell command on the marked files.
25 * Transforming File Names:: Using patterns to rename multiple files.
26 * Comparison in Dired:: Running `diff' by way of Dired.
27 * Subdirectories in Dired:: Adding subdirectories to the Dired buffer.
28 * Subdirectory Motion:: Moving across subdirectories, and up and down.
29 * Hiding Subdirectories:: Making subdirectories visible or invisible.
30 * Updating: Dired Updating. Discarding lines for files of no interest.
31 * Find: Dired and Find. Using `find' to choose the files for Dired.
32 * Extra: Dired Extra Features. Dired-X provides more features.
33 @end menu
34
35 @node Dired Enter
36 @section Entering Dired
37
38 @findex dired
39 @kindex C-x d
40 @vindex dired-listing-switches
41 To invoke Dired, do @kbd{C-x d} or @kbd{M-x dired}. The command reads
42 a directory name or wildcard file name pattern as a minibuffer argument
43 to specify which files to list. Where @code{dired} differs from
44 @code{list-directory} is in putting the buffer into Dired mode so that
45 the special commands of Dired are available.
46
47 The variable @code{dired-listing-switches} specifies the options to
48 give to @code{ls} for listing directory; this string @emph{must} contain
49 @samp{-l}. If you use a numeric prefix argument with the @code{dired}
50 command, you can specify the @code{ls} switches with the minibuffer
51 before you enter the directory specification.
52
53 @findex dired-other-window
54 @kindex C-x 4 d
55 @findex dired-other-frame
56 @kindex C-x 5 d
57 To display the Dired buffer in another window rather than in the
58 selected window, use @kbd{C-x 4 d} (@code{dired-other-window}) instead
59 of @kbd{C-x d}. @kbd{C-x 5 d} (@code{dired-other-frame}) uses a
60 separate frame to display the Dired buffer.
61
62 @node Dired Commands
63 @section Commands in the Dired Buffer
64
65 The Dired buffer is ``read-only,'' and inserting text in it is not
66 useful, so ordinary printing characters such as @kbd{d} and @kbd{x} are
67 used for special Dired commands. Some Dired commands @dfn{mark} or
68 @dfn{flag} the @dfn{current file} (that is, the file on the current
69 line); other commands operate on the marked files or on the flagged
70 files.
71
72 @kindex C-n @r{(Dired)}
73 @kindex C-p @r{(Dired)}
74 All the usual Emacs cursor motion commands are available in Dired
75 buffers. Some special-purpose cursor motion commands are also
76 provided. The keys @kbd{C-n} and @kbd{C-p} are redefined to put the
77 cursor at the beginning of the file name on the line, rather than at the
78 beginning of the line.
79
80 @kindex SPC @r{(Dired)}
81 For extra convenience, @key{SPC} and @kbd{n} in Dired are equivalent
82 to @kbd{C-n}. @kbd{p} is equivalent to @kbd{C-p}. (Moving by lines is
83 so common in Dired that it deserves to be easy to type.) @key{DEL}
84 (move up and unflag) is often useful simply for moving up.
85
86 @node Dired Deletion
87 @section Deleting Files with Dired
88 @cindex flagging files (in Dired)
89 @cindex deleting files (in Dired)
90
91 The primary use of Dired is to @dfn{flag} files for deletion and then
92 delete the files previously flagged.
93
94 @table @kbd
95 @item d
96 Flag this file for deletion.
97 @item u
98 Remove deletion flag on this line.
99 @item @key{DEL}
100 Move point to previous line and remove the deletion flag on that line.
101 @item x
102 Delete the files that are flagged for deletion.
103 @end table
104
105 @kindex d @r{(Dired)}
106 @findex dired-flag-file-deletion
107 You can flag a file for deletion by moving to the line describing the
108 file and typing @kbd{d} (@code{dired-flag-file-deletion}). The deletion flag is visible as a @samp{D} at
109 the beginning of the line. This command moves point to the next line,
110 so that repeated @kbd{d} commands flag successive files. A numeric
111 argument serves as a repeat count.
112 @vindex dired-recursive-deletes
113 The variable @code{dired-recursive-deletes} determines if the delete
114 command will delete non-empty directories recursively. The default
115 is to delete only empty directories.
116
117 @kindex u @r{(Dired deletion)}
118 @kindex DEL @r{(Dired)}
119 The files are flagged for deletion rather than deleted immediately to
120 reduce the danger of deleting a file accidentally. Until you direct
121 Dired to expunge the flagged files, you can remove deletion flags using
122 the commands @kbd{u} and @key{DEL}. @kbd{u} (@code{dired-unmark}) works
123 just like @kbd{d}, but removes flags rather than making flags.
124 @key{DEL} (@code{dired-unmark-backward}) moves upward, removing flags;
125 it is like @kbd{u} with argument @minus{}1.
126
127 @kindex x @r{(Dired)}
128 @findex dired-expunge
129 @cindex expunging (Dired)
130 To delete the flagged files, type @kbd{x} (@code{dired-expunge}).
131 This command first displays a list of all the file names flagged for
132 deletion, and requests confirmation with @kbd{yes}. If you confirm,
133 Dired deletes the flagged files, then deletes their lines from the text
134 of the Dired buffer. The shortened Dired buffer remains selected.
135
136 If you answer @kbd{no} or quit with @kbd{C-g} when asked to confirm, you
137 return immediately to Dired, with the deletion flags still present in
138 the buffer, and no files actually deleted.
139
140 @node Flagging Many Files
141 @section Flagging Many Files at Once
142 @cindex flagging many files for deletion (in Dired)
143
144 @table @kbd
145 @item #
146 Flag all auto-save files (files whose names start and end with @samp{#})
147 for deletion (@pxref{Auto Save}).
148
149 @item ~
150 Flag all backup files (files whose names end with @samp{~}) for deletion
151 (@pxref{Backup}).
152
153 @item &
154 Flag for deletion all files with certain kinds of names, names that
155 suggest you could easily create the files again.
156
157 @item .@: @r{(Period)}
158 Flag excess numeric backup files for deletion. The oldest and newest
159 few backup files of any one file are exempt; the middle ones are
160 flagged.
161
162 @item % d @var{regexp} @key{RET}
163 Flag for deletion all files whose names match the regular expression
164 @var{regexp}.
165 @end table
166
167 The @kbd{#}, @kbd{~}, @kbd{&}, and @kbd{.} commands flag many files for
168 deletion, based on their file names. These commands are useful
169 precisely because they do not themselves delete any files; you can
170 remove the deletion flags from any flagged files that you really wish to
171 keep.@refill
172
173 @kindex & @r{(Dired)}
174 @findex dired-flag-garbage-files
175 @vindex dired-garbage-files-regexp
176 @cindex deleting some backup files
177 @kbd{&} (@code{dired-flag-garbage-files}) flags files whose names
178 match the regular expression specified by the variable
179 @code{dired-garbage-files-regexp}. By default, this matches certain
180 files produced by @TeX{}, and the @samp{.orig} and @samp{.rej} files
181 produced by @code{patch}.
182
183 @kindex # @r{(Dired)}
184 @kindex ~ @r{(Dired)}
185 @findex dired-flag-auto-save-files
186 @findex dired-flag-backup-files
187 @cindex deleting auto-save files
188 @kbd{#} (@code{dired-flag-auto-save-files}) flags for deletion all
189 files whose names look like auto-save files (@pxref{Auto Save})---that
190 is, files whose names begin and end with @samp{#}. @kbd{~}
191 (@code{dired-flag-backup-files}) flags for deletion all files whose
192 names say they are backup files (@pxref{Backup})---that is, whose names
193 end in @samp{~}.
194
195 @kindex . @r{(Dired)}
196 @vindex dired-kept-versions
197 @findex dired-clean-directory
198 @kbd{.} (period, @code{dired-clean-directory}) flags just some of the
199 backup files for deletion: all but the oldest few and newest few backups
200 of any one file. Normally @code{dired-kept-versions} (@strong{not}
201 @code{kept-new-versions}; that applies only when saving) specifies the
202 number of newest versions of each file to keep, and
203 @code{kept-old-versions} specifies the number of oldest versions to
204 keep.
205
206 Period with a positive numeric argument, as in @kbd{C-u 3 .},
207 specifies the number of newest versions to keep, overriding
208 @code{dired-kept-versions}. A negative numeric argument overrides
209 @code{kept-old-versions}, using minus the value of the argument to
210 specify the number of oldest versions of each file to keep.
211
212 @findex dired-flag-files-regexp
213 @kindex % d @r{(Dired)}
214 The @kbd{% d} command flags all files whose names match a specified
215 regular expression (@code{dired-flag-files-regexp}). Only the
216 non-directory part of the file name is used in matching. You can use
217 @samp{^} and @samp{$} to anchor matches. You can exclude subdirectories
218 by hiding them (@pxref{Hiding Subdirectories}).
219
220 @node Dired Visiting
221 @section Visiting Files in Dired
222
223 There are several Dired commands for visiting or examining the files
224 listed in the Dired buffer. All of them apply to the current line's
225 file; if that file is really a directory, these commands invoke Dired on
226 that subdirectory (making a separate Dired buffer).
227
228 @table @kbd
229 @item f
230 @kindex f @r{(Dired)}
231 @findex dired-find-file
232 Visit the file described on the current line, like typing @kbd{C-x C-f}
233 and supplying that file name (@code{dired-find-file}). @xref{Visiting}.
234
235 @item @key{RET}
236 @kindex RET @r{(Dired)}
237 Equivalent to @kbd{f}.
238
239 @item a
240 @kindex a @r{(Dired)}
241 @findex dired-find-alternate-file
242 Like @kbd{f}, but replaces the contents of the Dired buffer with
243 that of an alternate file or directory.
244
245 @item o
246 @kindex o @r{(Dired)}
247 @findex dired-find-file-other-window
248 Like @kbd{f}, but uses another window to display the file's buffer
249 (@code{dired-find-file-other-window}). The Dired buffer remains visible
250 in the first window. This is like using @kbd{C-x 4 C-f} to visit the
251 file. @xref{Windows}.
252
253 @item C-o
254 @kindex C-o @r{(Dired)}
255 @findex dired-display-file
256 Visit the file described on the current line, and display the buffer in
257 another window, but do not select that window (@code{dired-display-file}).
258
259 @item Mouse-2
260 @findex dired-mouse-find-file-other-window
261 Visit the file named by the line you click on
262 (@code{dired-mouse-find-file-other-window}). This uses another window
263 to display the file, like the @kbd{o} command.
264
265 @item v
266 @kindex v @r{(Dired)}
267 @findex dired-view-file
268 View the file described on the current line, using @kbd{M-x view-file}
269 (@code{dired-view-file}).
270
271 Viewing a file is like visiting it, but is slanted toward moving around
272 in the file conveniently and does not allow changing the file.
273 @xref{Misc File Ops,View File}.
274 @end table
275
276 @node Marks vs Flags
277 @section Dired Marks vs. Flags
278
279 @cindex marking many files (in Dired)
280 Instead of flagging a file with @samp{D}, you can @dfn{mark} the file
281 with some other character (usually @samp{*}). Most Dired commands to
282 operate on files, aside from ``expunge'' (@kbd{x}), look for files
283 marked with @samp{*}.
284
285 Here are some commands for marking with @samp{*}, or for unmarking or
286 operating on marks. (@xref{Dired Deletion}, for commands to flag and
287 unflag files.)
288
289 @table @kbd
290 @item m
291 @itemx * m
292 @kindex m @r{(Dired)}
293 @kindex * m @r{(Dired)}
294 @findex dired-mark
295 Mark the current file with @samp{*} (@code{dired-mark}). With a numeric
296 argument @var{n}, mark the next @var{n} files starting with the current
297 file. (If @var{n} is negative, mark the previous @minus{}@var{n}
298 files.)
299
300 @item * *
301 @kindex * * @r{(Dired)}
302 @findex dired-mark-executables
303 @cindex marking executable files (in Dired)
304 Mark all executable files with @samp{*}
305 (@code{dired-mark-executables}). With a numeric argument, unmark all
306 those files.
307
308 @item * @@
309 @kindex * @@ @r{(Dired)}
310 @findex dired-mark-symlinks
311 @cindex marking symlinks (in Dired)
312 Mark all symbolic links with @samp{*} (@code{dired-mark-symlinks}).
313 With a numeric argument, unmark all those files.
314
315 @item * /
316 @kindex * / @r{(Dired)}
317 @findex dired-mark-directories
318 @cindex marking subdirectories (in Dired)
319 Mark with @samp{*} all files which are actually directories, except for
320 @file{.} and @file{..} (@code{dired-mark-directories}). With a numeric
321 argument, unmark all those files.
322
323 @item * s
324 @kindex * s @r{(Dired)}
325 @findex dired-mark-subdir-files
326 Mark all the files in the current subdirectory, aside from @file{.}
327 and @file{..} (@code{dired-mark-subdir-files}).
328
329 @item u
330 @itemx * u
331 @kindex u @r{(Dired)}
332 @kindex * u @r{(Dired)}
333 @findex dired-unmark
334 Remove any mark on this line (@code{dired-unmark}).
335
336 @item @key{DEL}
337 @itemx * @key{DEL}
338 @kindex * DEL @r{(Dired)}
339 @findex dired-unmark-backward
340 @cindex unmarking files (in Dired)
341 Move point to previous line and remove any mark on that line
342 (@code{dired-unmark-backward}).
343
344 @item * !
345 @kindex * ! @r{(Dired)}
346 @findex dired-unmark-all-files-no-query
347 Remove all marks from all the files in this Dired buffer
348 (@code{dired-unmark-all-files-no-query}).
349
350 @item * ? @var{markchar}
351 @kindex * ? @r{(Dired)}
352 @findex dired-unmark-all-files
353 Remove all marks that use the character @var{markchar}
354 (@code{dired-unmark-all-files}). The argument is a single
355 character---do not use @key{RET} to terminate it.
356
357 With a numeric argument, this command queries about each marked file,
358 asking whether to remove its mark. You can answer @kbd{y} meaning yes,
359 @kbd{n} meaning no, or @kbd{!} to remove the marks from the remaining
360 files without asking about them.
361
362 @item * C-n
363 @findex dired-next-marked-file
364 @kindex * C-n @r{(Dired)}
365 Move down to the next marked file (@code{dired-next-marked-file})
366 A file is ``marked'' if it has any kind of mark.
367
368 @item * C-p
369 @findex dired-prev-marked-file
370 @kindex * C-p @r{(Dired)}
371 Move up to the previous marked file (@code{dired-prev-marked-file})
372
373 @item * t
374 @kindex * t @r{(Dired)}
375 @findex dired-do-toggle
376 @cindex toggling marks (in Dired)
377 Toggle all marks (@code{dired-do-toggle}): files marked with @samp{*}
378 become unmarked, and unmarked files are marked with @samp{*}. Files
379 marked in any other way are not affected.
380
381 @item * c @var{old} @var{new}
382 @kindex * c @r{(Dired)}
383 @findex dired-change-marks
384 Replace all marks that use the character @var{old} with marks that use
385 the character @var{new} (@code{dired-change-marks}). This command is
386 the primary way to create or use marks other than @samp{*} or @samp{D}.
387 The arguments are single characters---do not use @key{RET} to terminate
388 them.
389
390 You can use almost any character as a mark character by means of this
391 command, to distinguish various classes of files. If @var{old} is a
392 space (@samp{ }), then the command operates on all unmarked files; if
393 @var{new} is a space, then the command unmarks the files it acts on.
394
395 To illustrate the power of this command, here is how to put @samp{D}
396 flags on all the files that have no marks, while unflagging all those
397 that already have @samp{D} flags:
398
399 @example
400 * c D t * c SPC D * c t SPC
401 @end example
402
403 This assumes that no files are marked with @samp{t}.
404
405 @item % m @var{regexp} @key{RET}
406 @itemx * % @var{regexp} @key{RET}
407 @findex dired-mark-files-regexp
408 @kindex % m @r{(Dired)}
409 @kindex * % @r{(Dired)}
410 Mark (with @samp{*}) all files whose names match the regular expression
411 @var{regexp} (@code{dired-mark-files-regexp}). This command is like
412 @kbd{% d}, except that it marks files with @samp{*} instead of flagging
413 with @samp{D}. @xref{Flagging Many Files}.
414
415 Only the non-directory part of the file name is used in matching. Use
416 @samp{^} and @samp{$} to anchor matches. Exclude subdirectories by
417 hiding them (@pxref{Hiding Subdirectories}).
418
419 @item % g @var{regexp} @key{RET}
420 @findex dired-mark-files-containing-regexp
421 @kindex % g @r{(Dired)}
422 @cindex finding files containing regexp matches (in Dired)
423 Mark (with @samp{*}) all files whose @emph{contents} contain a match for
424 the regular expression @var{regexp}
425 (@code{dired-mark-files-containing-regexp}). This command is like
426 @kbd{% m}, except that it searches the file contents instead of the file
427 name.
428
429 @item C-_
430 @kindex C-_ @r{(Dired)}
431 @findex dired-undo
432 Undo changes in the Dired buffer, such as adding or removing
433 marks (@code{dired-undo}).
434 @end table
435
436 @node Operating on Files
437 @section Operating on Files
438 @cindex operating on files in Dired
439
440 This section describes the basic Dired commands to operate on one file
441 or several files. All of these commands are capital letters; all of
442 them use the minibuffer, either to read an argument or to ask for
443 confirmation, before they act. All of them give you several ways to
444 specify which files to manipulate:
445
446 @itemize @bullet
447 @item
448 If you give the command a numeric prefix argument @var{n}, it operates
449 on the next @var{n} files, starting with the current file. (If @var{n}
450 is negative, the command operates on the @minus{}@var{n} files preceding
451 the current line.)
452
453 @item
454 Otherwise, if some files are marked with @samp{*}, the command operates
455 on all those files.
456
457 @item
458 Otherwise, the command operates on the current file only.
459 @end itemize
460
461 Here are the file-manipulating commands that operate on files in this
462 way. (Some other Dired commands, such as @kbd{!} and the @samp{%}
463 commands, also use these conventions to decide which files to work on.)
464
465 @table @kbd
466 @findex dired-do-copy
467 @kindex C @r{(Dired)}
468 @cindex copying files (in Dired)
469 @item C @var{new} @key{RET}
470 Copy the specified files (@code{dired-do-copy}). The argument @var{new}
471 is the directory to copy into, or (if copying a single file) the new
472 name.
473 @vindex dired-recursive-copies
474 The variable @code{dired-recursive-copies} determines if directories are
475 copied recursively. The default is to not copy recursively.
476
477 @vindex dired-copy-preserve-time
478 If @code{dired-copy-preserve-time} is non-@code{nil}, then copying with
479 this command sets the modification time of the new file to be the same
480 as that of the old file.
481
482 @item D
483 @findex dired-do-delete
484 @kindex D @r{(Dired)}
485 Delete the specified files (@code{dired-do-delete}). Like the other
486 commands in this section, this command operates on the @emph{marked}
487 files, or the next @var{n} files. By contrast, @kbd{x}
488 (@code{dired-expunge}) deletes all @dfn{flagged} files.
489
490 @findex dired-do-rename
491 @kindex R @r{(Dired)}
492 @cindex renaming files (in Dired)
493 @item R @var{new} @key{RET}
494 Rename the specified files (@code{dired-do-rename}). The argument
495 @var{new} is the directory to rename into, or (if renaming a single
496 file) the new name.
497
498 Dired automatically changes the visited file name of buffers associated
499 with renamed files so that they refer to the new names.
500
501 @findex dired-do-hardlink
502 @kindex H @r{(Dired)}
503 @cindex hard links (in Dired)
504 @item H @var{new} @key{RET}
505 Make hard links to the specified files (@code{dired-do-hardlink}). The
506 argument @var{new} is the directory to make the links in, or (if making
507 just one link) the name to give the link.
508
509 @findex dired-do-symlink
510 @kindex S @r{(Dired)}
511 @cindex symlinks (in Dired)
512 @item S @var{new} @key{RET}
513 Make symbolic links to the specified files (@code{dired-do-symlink}).
514 The argument @var{new} is the directory to make the links in, or (if
515 making just one link) the name to give the link.
516
517 @findex dired-do-chmod
518 @kindex M @r{(Dired)}
519 @cindex changing file permissions (in Dired)
520 @item M @var{modespec} @key{RET}
521 Change the mode (also called ``permission bits'') of the specified files
522 (@code{dired-do-chmod}). This uses the @code{chmod} program, so
523 @var{modespec} can be any argument that @code{chmod} can handle.
524
525 @findex dired-do-chgrp
526 @kindex G @r{(Dired)}
527 @cindex changing file group ownership (in Dired)
528 @item G @var{newgroup} @key{RET}
529 Change the group of the specified files to @var{newgroup}
530 (@code{dired-do-chgrp}).
531
532 @findex dired-do-chown
533 @kindex O @r{(Dired)}
534 @cindex changing file owner (in Dired)
535 @item O @var{newowner} @key{RET}
536 Change the owner of the specified files to @var{newowner}
537 (@code{dired-do-chown}). (On most systems, only the superuser can do
538 this.)
539
540 @vindex dired-chown-program
541 The variable @code{dired-chown-program} specifies the name of the
542 program to use to do the work (different systems put @code{chown} in
543 different places).
544
545 @findex dired-do-print
546 @kindex P @r{(Dired)}
547 @cindex printing files (in Dired)
548 @item P @var{command} @key{RET}
549 Print the specified files (@code{dired-do-print}). You must specify the
550 command to print them with, but the minibuffer starts out with a
551 suitable guess made using the variables @code{lpr-command} and
552 @code{lpr-switches} (the same variables that @code{lpr-buffer} uses;
553 @pxref{Hardcopy}).
554
555 @findex dired-do-compress
556 @kindex Z @r{(Dired)}
557 @cindex compressing files (in Dired)
558 @item Z
559 Compress the specified files (@code{dired-do-compress}). If the file
560 appears to be a compressed file already, it is uncompressed instead.
561
562 @findex dired-do-load
563 @kindex L @r{(Dired)}
564 @cindex loading several files (in Dired)
565 @item L
566 Load the specified Emacs Lisp files (@code{dired-do-load}).
567 @xref{Lisp Libraries}.
568
569 @findex dired-do-byte-compile
570 @kindex B @r{(Dired)}
571 @cindex byte-compiling several files (in Dired)
572 @item B
573 Byte compile the specified Emacs Lisp files
574 (@code{dired-do-byte-compile}). @xref{Byte Compilation,, Byte
575 Compilation, elisp, The Emacs Lisp Reference Manual}.
576
577 @kindex A @r{(Dired)}
578 @findex dired-do-search
579 @cindex search multiple files (in Dired)
580 @item A @var{regexp} @key{RET}
581 Search all the specified files for the regular expression @var{regexp}
582 (@code{dired-do-search}).
583
584 This command is a variant of @code{tags-search}. The search stops at
585 the first match it finds; use @kbd{M-,} to resume the search and find
586 the next match. @xref{Tags Search}.
587
588 @kindex Q @r{(Dired)}
589 @findex dired-do-query-replace
590 @cindex search and replace in multiple files (in Dired)
591 @item Q @var{from} @key{RET} @var{to} @key{RET}
592 Perform @code{query-replace-regexp} on each of the specified files,
593 replacing matches for @var{from} (a regular expression) with the string
594 @var{to} (@code{dired-do-query-replace}).
595
596 This command is a variant of @code{tags-query-replace}. If you exit the
597 query replace loop, you can use @kbd{M-,} to resume the scan and replace
598 more matches. @xref{Tags Search}.
599
600 @kindex a @r{(Dired)}
601 @findex dired-do-apply
602 @cindex apply arbitrary function to many files
603 @item a @var{function} @kbd{RET}
604 Apply an arbitrary Lisp function to the name of each marked file
605 (@code{dired-do-apply}).
606 @end table
607
608 @kindex + @r{(Dired)}
609 @findex dired-create-directory
610 One special file-operation command is @kbd{+}
611 (@code{dired-create-directory}). This command reads a directory name and
612 creates the directory if it does not already exist.
613
614 @node Shell Commands in Dired
615 @section Shell Commands in Dired
616 @cindex shell commands, Dired
617
618 @findex dired-do-shell-command
619 @kindex ! @r{(Dired)}
620 The dired command @kbd{!} (@code{dired-do-shell-command}) reads a shell
621 command string in the minibuffer and runs that shell command on all the
622 specified files. You can specify the files to operate on in the usual
623 ways for Dired commands (@pxref{Operating on Files}). There are two
624 ways of applying a shell command to multiple files:
625
626 @itemize @bullet
627 @item
628 If you use @samp{*} in the shell command, then it runs just once, with
629 the list of file names substituted for the @samp{*}. The order of file
630 names is the order of appearance in the Dired buffer.
631
632 Thus, @kbd{! tar cf foo.tar * @key{RET}} runs @code{tar} on the entire
633 list of file names, putting them into one tar file @file{foo.tar}.
634
635 @item
636 If the command string doesn't contain @samp{*}, then it runs once
637 @emph{for each file}, with the file name added at the end.
638
639 For example, @kbd{! uudecode @key{RET}} runs @code{uudecode} on each
640 file.
641 @end itemize
642
643 What if you want to run the shell command once for each file but with
644 the file name inserted in the middle? Or if you want to use the file
645 names in a more complicated fashion? Use a shell loop. For example,
646 this shell command would run @code{uuencode} on each of the specified
647 files, writing the output into a corresponding @file{.uu} file:
648
649 @example
650 for file in *; do uuencode $file $file >$file.uu; done
651 @end example
652
653 @noindent
654 In simple cases you can instead use @samp{?} in the command. This is
655 similar to @samp{*} but the command will be run on each file
656 individually.
657
658 The working directory for the shell command is the top-level directory
659 of the Dired buffer.
660
661 The @kbd{!} command does not attempt to update the Dired buffer to show
662 new or modified files, because it doesn't really understand shell
663 commands, and does not know what files the shell command changed. Use
664 the @kbd{g} command to update the Dired buffer (@pxref{Dired
665 Updating}).
666
667 @node Transforming File Names
668 @section Transforming File Names in Dired
669
670 Here are commands that alter file names in a systematic way:
671
672 @table @kbd
673 @findex dired-upcase
674 @kindex % u @r{(Dired)}
675 @cindex upcase file names
676 @item % u
677 Rename each of the selected files to an upper-case name
678 (@code{dired-upcase}). If the old file names are @file{Foo}
679 and @file{bar}, the new names are @file{FOO} and @file{BAR}.
680
681 @item % l
682 @findex dired-downcase
683 @kindex % l @r{(Dired)}
684 @cindex downcase file names
685 Rename each of the selected files to a lower-case name
686 (@code{dired-downcase}). If the old file names are @file{Foo} and
687 @file{bar}, the new names are @file{foo} and @file{bar}.
688
689 @item % R @var{from} @key{RET} @var{to} @key{RET}
690 @kindex % R @r{(Dired)}
691 @findex dired-do-rename-regexp
692 @itemx % C @var{from} @key{RET} @var{to} @key{RET}
693 @kindex % C @r{(Dired)}
694 @findex dired-do-copy-regexp
695 @itemx % H @var{from} @key{RET} @var{to} @key{RET}
696 @kindex % H @r{(Dired)}
697 @findex dired-do-hardlink-regexp
698 @itemx % S @var{from} @key{RET} @var{to} @key{RET}
699 @kindex % S @r{(Dired)}
700 @findex dired-do-symlink-regexp
701 These four commands rename, copy, make hard links and make soft links,
702 in each case computing the new name by regular-expression substitution
703 from the name of the old file.
704 @end table
705
706 The four regular-expression substitution commands effectively perform
707 a search-and-replace on the selected file names in the Dired buffer.
708 They read two arguments: a regular expression @var{from}, and a
709 substitution pattern @var{to}.
710
711 The commands match each ``old'' file name against the regular
712 expression @var{from}, and then replace the matching part with @var{to}.
713 You can use @samp{\&} and @samp{\@var{digit}} in @var{to} to refer to
714 all or part of what the pattern matched in the old file name, as in
715 @code{replace-regexp} (@pxref{Regexp Replace}). If the regular expression
716 matches more than once in a file name, only the first match is replaced.
717
718 For example, @kbd{% R ^.*$ @key{RET} x-\& @key{RET}} renames each
719 selected file by prepending @samp{x-} to its name. The inverse of this,
720 removing @samp{x-} from the front of each file name, is also possible:
721 one method is @kbd{% R ^x-\(.*\)$ @key{RET} \1 @key{RET}}; another is
722 @kbd{% R ^x- @key{RET} @key{RET}}. (Use @samp{^} and @samp{$} to anchor
723 matches that should span the whole filename.)
724
725 Normally, the replacement process does not consider the files'
726 directory names; it operates on the file name within the directory. If
727 you specify a numeric argument of zero, then replacement affects the
728 entire absolute file name including directory name.
729
730 Often you will want to select the set of files to operate on using the
731 same @var{regexp} that you will use to operate on them. To do this,
732 mark those files with @kbd{% m @var{regexp} @key{RET}}, then use the
733 same regular expression in the command to operate on the files. To make
734 this easier, the @kbd{%} commands to operate on files use the last
735 regular expression specified in any @kbd{%} command as a default.
736
737 @node Comparison in Dired
738 @section File Comparison with Dired
739 @cindex file comparison (in Dired)
740 @cindex compare files (in Dired)
741
742 Here are two Dired commands that compare specified files using
743 @code{diff}.
744
745 @table @kbd
746 @item =
747 @findex dired-diff
748 @kindex = @r{(Dired)}
749 Compare the current file (the file at point) with another file (the file
750 at the mark) using the @code{diff} program (@code{dired-diff}). The
751 file at the mark is the first argument of @code{diff}, and the file at
752 point is the second argument.
753
754 @findex dired-backup-diff
755 @kindex M-= @r{(Dired)}
756 @item M-=
757 Compare the current file with its latest backup file
758 (@code{dired-backup-diff}). If the current file is itself a backup,
759 compare it with the file it is a backup of; this way, you can compare
760 a file with any backup version of your choice.
761
762 The backup file is the first file given to @code{diff}.
763 @end table
764
765 @node Subdirectories in Dired
766 @section Subdirectories in Dired
767 @cindex subdirectories in Dired
768 @cindex expanding subdirectories in Dired
769
770 A Dired buffer displays just one directory in the normal case;
771 but you can optionally include its subdirectories as well.
772
773 The simplest way to include multiple directories in one Dired buffer is
774 to specify the options @samp{-lR} for running @code{ls}. (If you give a
775 numeric argument when you run Dired, then you can specify these options
776 in the minibuffer.) That produces a recursive directory listing showing
777 all subdirectories at all levels.
778
779 But usually all the subdirectories are too many; usually you will
780 prefer to include specific subdirectories only. You can do this with
781 the @kbd{i} command:
782
783 @table @kbd
784 @findex dired-maybe-insert-subdir
785 @kindex i @r{(Dired)}
786 @item i
787 @cindex inserted subdirectory (Dired)
788 @cindex in-situ subdirectory (Dired)
789 Insert the contents of a subdirectory later in the buffer.
790 @end table
791
792 Use the @kbd{i} (@code{dired-maybe-insert-subdir}) command on a line
793 that describes a file which is a directory. It inserts the contents of
794 that directory into the same Dired buffer, and moves there. Inserted
795 subdirectory contents follow the top-level directory of the Dired
796 buffer, just as they do in @samp{ls -lR} output.
797
798 If the subdirectory's contents are already present in the buffer, the
799 @kbd{i} command just moves to it.
800
801 In either case, @kbd{i} sets the Emacs mark before moving, so @kbd{C-u
802 C-@key{SPC}} takes you back to the old position in the buffer (the line
803 describing that subdirectory).
804
805 Use the @kbd{l} command (@code{dired-do-redisplay}) to update the
806 subdirectory's contents. Use @kbd{k} to delete the subdirectory.
807 @xref{Dired Updating}.
808
809 @node Subdirectory Motion
810 @section Moving Over Subdirectories
811
812 When a Dired buffer lists subdirectories, you can use the page motion
813 commands @kbd{C-x [} and @kbd{C-x ]} to move by entire directories.
814
815 @cindex header line (Dired)
816 @cindex directory header lines
817 The following commands move across, up and down in the tree of
818 directories within one Dired buffer. They move to @dfn{directory header
819 lines}, which are the lines that give a directory's name, at the
820 beginning of the directory's contents.
821
822 @table @kbd
823 @findex dired-next-subdir
824 @kindex C-M-n @r{(Dired)}
825 @item C-M-n
826 Go to next subdirectory header line, regardless of level
827 (@code{dired-next-subdir}).
828
829 @findex dired-prev-subdir
830 @kindex C-M-p @r{(Dired)}
831 @item C-M-p
832 Go to previous subdirectory header line, regardless of level
833 (@code{dired-prev-subdir}).
834
835 @findex dired-tree-up
836 @kindex C-M-u @r{(Dired)}
837 @item C-M-u
838 Go up to the parent directory's header line (@code{dired-tree-up}).
839
840 @findex dired-tree-down
841 @kindex C-M-d @r{(Dired)}
842 @item C-M-d
843 Go down in the directory tree, to the first subdirectory's header line
844 (@code{dired-tree-down}).
845
846 @findex dired-prev-dirline
847 @kindex < @r{(Dired)}
848 @item <
849 Move up to the previous directory-file line (@code{dired-prev-dirline}).
850 These lines are the ones that describe a directory as a file in its
851 parent directory.
852
853 @findex dired-next-dirline
854 @kindex > @r{(Dired)}
855 @item >
856 Move down to the next directory-file line (@code{dired-prev-dirline}).
857 @end table
858
859 @node Hiding Subdirectories
860 @section Hiding Subdirectories
861
862 @cindex hiding in Dired (Dired)
863 @dfn{Hiding} a subdirectory means to make it invisible, except for its
864 header line, via selective display (@pxref{Selective Display}).
865
866 @table @kbd
867 @item $
868 @findex dired-hide-subdir
869 @kindex $ @r{(Dired)}
870 Hide or reveal the subdirectory that point is in, and move point to the
871 next subdirectory (@code{dired-hide-subdir}). A numeric argument serves
872 as a repeat count.
873
874 @item M-$
875 @findex dired-hide-all
876 @kindex M-$ @r{(Dired)}
877 Hide all subdirectories in this Dired buffer, leaving only their header
878 lines (@code{dired-hide-all}). Or, if any subdirectory is currently
879 hidden, make all subdirectories visible again. You can use this command
880 to get an overview in very deep directory trees or to move quickly to
881 subdirectories far away.
882 @end table
883
884 Ordinary Dired commands never consider files inside a hidden
885 subdirectory. For example, the commands to operate on marked files
886 ignore files in hidden directories even if they are marked. Thus you
887 can use hiding to temporarily exclude subdirectories from operations
888 without having to remove the markers.
889
890 The subdirectory hiding commands toggle; that is, they hide what was
891 visible, and show what was hidden.
892
893 @node Dired Updating
894 @section Updating the Dired Buffer
895 @cindex updating Dired buffer
896 @cindex refreshing displayed files
897
898 This section describes commands to update the Dired buffer to reflect
899 outside (non-Dired) changes in the directories and files, and to delete
900 part of the Dired buffer.
901
902 @table @kbd
903 @item g
904 Update the entire contents of the Dired buffer (@code{revert-buffer}).
905
906 @item l
907 Update the specified files (@code{dired-do-redisplay}).
908
909 @item k
910 Delete the specified @emph{file lines}---not the files, just the lines
911 (@code{dired-do-kill-lines}).
912
913 @item s
914 Toggle between alphabetical order and date/time order
915 (@code{dired-sort-toggle-or-edit}).
916
917 @item C-u s @var{switches} @key{RET}
918 Refresh the Dired buffer using @var{switches} as
919 @code{dired-listing-switches}.
920 @end table
921
922 @kindex g @r{(Dired)}
923 @findex revert-buffer @r{(Dired)}
924 Type @kbd{g} (@code{revert-buffer}) to update the contents of the
925 Dired buffer, based on changes in the files and directories listed.
926 This preserves all marks except for those on files that have vanished.
927 Hidden subdirectories are updated but remain hidden.
928
929 @kindex l @r{(Dired)}
930 @findex dired-do-redisplay
931 To update only some of the files, type @kbd{l}
932 (@code{dired-do-redisplay}). This command applies to the next @var{n}
933 files, or to the marked files if any, or to the current file. Updating
934 them means reading their current status from the file system and
935 changing the buffer to reflect it properly.
936
937 If you use @kbd{l} on a subdirectory header line, it updates the
938 contents of the corresponding subdirectory.
939
940 @kindex k @r{(Dired)}
941 @findex dired-do-kill-lines
942 To delete the specified @emph{file lines}---not the files, just the
943 lines---type @kbd{k} (@code{dired-do-kill-lines}). With a numeric
944 argument @var{n}, this command applies to the next @var{n} files;
945 otherwise, it applies to the marked files.
946
947 If you kill the line for a file that is a directory, the directory's
948 contents are also deleted from the buffer. Typing @kbd{C-u k} on the
949 header line for a subdirectory is another way to delete a subdirectory
950 from the Dired buffer.
951
952 The @kbd{g} command brings back any individual lines that you have
953 killed in this way, but not subdirectories---you must use @kbd{i} to
954 reinsert each subdirectory.
955
956 @cindex Dired sorting
957 @cindex sorting Dired buffer
958 @kindex s @r{(Dired)}
959 @findex dired-sort-toggle-or-edit
960 The files in a Dired buffers are normally listed in alphabetical order
961 by file names. Alternatively Dired can sort them by date/time. The
962 Dired command @kbd{s} (@code{dired-sort-toggle-or-edit}) switches
963 between these two sorting modes. The mode line in a Dired buffer
964 indicates which way it is currently sorted---by name, or by date.
965
966 @kbd{C-u s @var{switches} @key{RET}} lets you specify a new value for
967 @code{dired-listing-switches}.
968
969 @node Dired and Find
970 @section Dired and @code{find}
971 @cindex @code{find} and Dired
972
973 You can select a set of files for display in a Dired buffer more
974 flexibly by using the @code{find} utility to choose the files.
975
976 @findex find-name-dired
977 To search for files with names matching a wildcard pattern use
978 @kbd{M-x find-name-dired}. It reads arguments @var{directory} and
979 @var{pattern}, and chooses all the files in @var{directory} or its
980 subdirectories whose individual names match @var{pattern}.
981
982 The files thus chosen are displayed in a Dired buffer in which the
983 ordinary Dired commands are available.
984
985 @findex find-grep-dired
986 If you want to test the contents of files, rather than their names,
987 use @kbd{M-x find-grep-dired}. This command reads two minibuffer
988 arguments, @var{directory} and @var{regexp}; it chooses all the files in
989 @var{directory} or its subdirectories that contain a match for
990 @var{regexp}. It works by running the programs @code{find} and
991 @code{grep}. See also @kbd{M-x grep-find}, in @ref{Compilation}.
992 Remember to write the regular expression for @code{grep}, not for Emacs.
993 (An alternative method of showing files whose contents match a given
994 regexp is the @kbd{% g @var{regexp}} command, see @ref{Marks vs Flags}.)
995
996 @findex find-dired
997 The most general command in this series is @kbd{M-x find-dired}, which
998 lets you specify any condition that @code{find} can test. It takes two
999 minibuffer arguments, @var{directory} and @var{find-args}; it runs
1000 @code{find} in @var{directory}, passing @var{find-args} to tell
1001 @code{find} what condition to test. To use this command, you need to
1002 know how to use @code{find}.
1003
1004 @vindex find-ls-option
1005 The format of listing produced by these commands is controlled by the
1006 variable @code{find-ls-option}, whose default value specifies using
1007 options @samp{-ld} for @code{ls}. If your listings are corrupted, you
1008 may need to change the value of this variable.
1009
1010 @node Dired Extra Features
1011 @section Extra Features for Dired
1012
1013 The Dired-X package provides various extra features for Dired mode. You
1014 can load it with @code{M-x load-library} or customize
1015 @code{dired-load-hook} to add @code{dired-require-dired-x}.
1016 @xref{,Dired-X,,dired-x, Dired Extra Version 2 User's Manual}.