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