(set_case_table): If standard is nonzero, setup
[emacs.git] / man / dired.texi
blobb50ac82ab0bd9a69966f540e8e3af780cc8fd900
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985,86,87,93,94,95,97,2000,2001
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{Top, 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.   Special motion commands 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 * Wdired::                    Operating on files by editing the Dired buffer.
43 * Misc: Misc Dired Features.  Various other features.
44 @end menu
46 @node Dired Enter
47 @section Entering Dired
49 @findex dired
50 @kindex C-x d
51 @vindex dired-listing-switches
52   To invoke Dired, do @kbd{C-x d} or @kbd{M-x dired}.  The command
53 reads a directory name or wildcard file name pattern as a minibuffer
54 argument to specify which files to list.  @kbd{C-x C-f} given a
55 directory name also invokes Dired.  Where @code{dired} differs from
56 @code{list-directory} is that it puts the buffer into Dired mode, so
57 that the special commands of Dired are available.
59   The variable @code{dired-listing-switches} specifies the options to
60 give to @code{ls} for listing the directory; this string @emph{must} contain
61 @samp{-l}.  If you use a numeric prefix argument with the @code{dired}
62 command, you can specify the @code{ls} switches with the minibuffer
63 before you enter the directory specification.  No matter how they are
64 specified, the @code{ls} switches should all be short options (that
65 is, single characters) requiring no arguments.
67 @findex dired-other-window
68 @kindex C-x 4 d
69 @findex dired-other-frame
70 @kindex C-x 5 d
71   To display the Dired buffer in another window rather than in the
72 selected window, use @kbd{C-x 4 d} (@code{dired-other-window}) instead
73 of @kbd{C-x d}.  @kbd{C-x 5 d} (@code{dired-other-frame}) uses a
74 separate frame to display the Dired buffer.
76 @node Dired Navigation
77 @section Navigation in the Dired Buffer
79 @kindex C-n @r{(Dired)}
80 @kindex C-p @r{(Dired)}
81   All the usual Emacs cursor motion commands are available in Dired
82 buffers.  Some special-purpose cursor motion commands are also
83 provided.  The keys @kbd{C-n} and @kbd{C-p} are redefined to put the
84 cursor at the beginning of the file name on the line, rather than at the
85 beginning of the line.
87 @kindex SPC @r{(Dired)}
88   For extra convenience, @key{SPC} and @kbd{n} in Dired are equivalent
89 to @kbd{C-n}.  @kbd{p} is equivalent to @kbd{C-p}.  (Moving by lines is
90 so common in Dired that it deserves to be easy to type.)  @key{DEL}
91 (move up and unflag) is often useful simply for moving up.
93 @findex dired-goto-file
94 @kindex M-g @r{(Dired)}
95   @kbd{M-g} (@code{dired-goto-file}) moves point to the line that
96 describes a specified file or directory.
98   Some additional navigation commands are available when the Dired
99 buffer includes several directories.  @xref{Subdirectory Motion}.
101 @node Dired Deletion
102 @section Deleting Files with Dired
103 @cindex flagging files (in Dired)
104 @cindex deleting files (in Dired)
106   One of the most frequent uses of Dired is to first @dfn{flag} files for
107 deletion, then delete the files that were flagged.
109 @table @kbd
110 @item d
111 Flag this file for deletion.
112 @item u
113 Remove deletion flag on this line.
114 @item @key{DEL}
115 Move point to previous line and remove the deletion flag on that line.
116 @item x
117 Delete the files that are flagged for deletion.
118 @end table
120 @kindex d @r{(Dired)}
121 @findex dired-flag-file-deletion
122   You can flag a file for deletion by moving to the line describing the
123 file and typing @kbd{d} (@code{dired-flag-file-deletion}).  The deletion flag is visible as a @samp{D} at
124 the beginning of the line.  This command moves point to the next line,
125 so that repeated @kbd{d} commands flag successive files.  A numeric
126 argument serves as a repeat count.
128 @cindex recursive deletion
129 @vindex dired-recursive-deletes
130   The variable @code{dired-recursive-deletes} controls whether the
131 delete command will delete non-empty directories (including their
132 contents).  The default is to delete only empty directories.
134 @kindex u @r{(Dired deletion)}
135 @kindex DEL @r{(Dired)}
136   The files are flagged for deletion rather than deleted immediately to
137 reduce the danger of deleting a file accidentally.  Until you direct
138 Dired to delete the flagged files, you can remove deletion flags using
139 the commands @kbd{u} and @key{DEL}.  @kbd{u} (@code{dired-unmark}) works
140 just like @kbd{d}, but removes flags rather than making flags.
141 @key{DEL} (@code{dired-unmark-backward}) moves upward, removing flags;
142 it is like @kbd{u} with argument @minus{}1.
144 @kindex x @r{(Dired)}
145 @findex dired-do-flagged-delete
146 @cindex expunging (Dired)
147   To delete the flagged files, type @kbd{x} (@code{dired-do-flagged-delete}).
148 (This is also known as @dfn{expunging}.)
149 This command first displays a list of all the file names flagged for
150 deletion, and requests confirmation with @kbd{yes}.  If you confirm,
151 Dired deletes the flagged files, then deletes their lines from the text
152 of the Dired buffer.  The shortened Dired buffer remains selected.
154   If you answer @kbd{no} or quit with @kbd{C-g} when asked to confirm, you
155 return immediately to Dired, with the deletion flags still present in
156 the buffer, and no files actually deleted.
158 @node Flagging Many Files
159 @section Flagging Many Files at Once
160 @cindex flagging many files for deletion (in Dired)
162 @table @kbd
163 @item #
164 Flag all auto-save files (files whose names start and end with @samp{#})
165 for deletion (@pxref{Auto Save}).
167 @item ~
168 Flag all backup files (files whose names end with @samp{~}) for deletion
169 (@pxref{Backup}).
171 @item &
172 Flag for deletion all files with certain kinds of names, names that
173 suggest you could easily create the files again.
175 @item .@: @r{(Period)}
176 Flag excess numeric backup files for deletion.  The oldest and newest
177 few backup files of any one file are exempt; the middle ones are
178 flagged.
180 @item % d @var{regexp} @key{RET}
181 Flag for deletion all files whose names match the regular expression
182 @var{regexp}.
183 @end table
185   The @kbd{#}, @kbd{~}, @kbd{&}, and @kbd{.} commands flag many files for
186 deletion, based on their file names.  These commands are useful
187 precisely because they do not themselves delete any files; you can
188 remove the deletion flags from any flagged files that you really wish to
189 keep.@refill
191 @kindex & @r{(Dired)}
192 @findex dired-flag-garbage-files
193 @vindex dired-garbage-files-regexp
194 @cindex deleting some backup files
195   @kbd{&} (@code{dired-flag-garbage-files}) flags files whose names
196 match the regular expression specified by the variable
197 @code{dired-garbage-files-regexp}.  By default, this matches certain
198 files produced by @TeX{}, @samp{.bak} files, and the @samp{.orig} and
199 @samp{.rej} files produced by @code{patch}.
201 @kindex # @r{(Dired)}
202 @findex dired-flag-auto-save-files
203 @cindex deleting auto-save files
204   @kbd{#} (@code{dired-flag-auto-save-files}) flags for deletion all
205 files whose names look like auto-save files (@pxref{Auto Save})---that
206 is, files whose names begin and end with @samp{#}.
208 @kindex ~ @r{(Dired)}
209 @findex dired-flag-backup-files
210   @kbd{~} (@code{dired-flag-backup-files}) flags for deletion all files
211 whose names say they are backup files (@pxref{Backup})---that is, files
212 whose names end in @samp{~}.
214 @kindex . @r{(Dired)}
215 @vindex dired-kept-versions
216 @findex dired-clean-directory
217   @kbd{.} (period, @code{dired-clean-directory}) flags just some of the
218 backup files for deletion: all but the oldest few and newest few backups
219 of any one file.  Normally @code{dired-kept-versions} (@strong{not}
220 @code{kept-new-versions}; that applies only when saving) specifies the
221 number of newest versions of each file to keep, and
222 @code{kept-old-versions} specifies the number of oldest versions to
223 keep.
225   Period with a positive numeric argument, as in @kbd{C-u 3 .},
226 specifies the number of newest versions to keep, overriding
227 @code{dired-kept-versions}.  A negative numeric argument overrides
228 @code{kept-old-versions}, using minus the value of the argument to
229 specify the number of oldest versions of each file to keep.
231 @findex dired-flag-files-regexp
232 @kindex % d @r{(Dired)}
233   The @kbd{% d} command flags all files whose names match a specified
234 regular expression (@code{dired-flag-files-regexp}).  Only the
235 non-directory part of the file name is used in matching.  You can use
236 @samp{^} and @samp{$} to anchor matches.  You can exclude subdirectories
237 by hiding them (@pxref{Hiding Subdirectories}).
239 @node Dired Visiting
240 @section Visiting Files in Dired
242   There are several Dired commands for visiting or examining the files
243 listed in the Dired buffer.  All of them apply to the current line's
244 file; if that file is really a directory, these commands invoke Dired on
245 that subdirectory (making a separate Dired buffer).
247 @table @kbd
248 @item f
249 @kindex f @r{(Dired)}
250 @findex dired-find-file
251 Visit the file described on the current line, like typing @kbd{C-x C-f}
252 and supplying that file name (@code{dired-find-file}).  @xref{Visiting}.
254 @item @key{RET}
255 @itemx e
256 @kindex RET @r{(Dired)}
257 @kindex e @r{(Dired)}
258 Equivalent to @kbd{f}.
260 @ignore  @c This command seems too risky to document at all.
261 @item a
262 @kindex a @r{(Dired)}
263 @findex dired-find-alternate-file
264 Like @kbd{f}, but replaces the contents of the Dired buffer with
265 that of an alternate file or directory (@code{dired-find-alternate-file}).
266 @end ignore
268 @item o
269 @kindex o @r{(Dired)}
270 @findex dired-find-file-other-window
271 Like @kbd{f}, but uses another window to display the file's buffer
272 (@code{dired-find-file-other-window}).  The Dired buffer remains visible
273 in the first window.  This is like using @kbd{C-x 4 C-f} to visit the
274 file.  @xref{Windows}.
276 @item C-o
277 @kindex C-o @r{(Dired)}
278 @findex dired-display-file
279 Visit the file described on the current line, and display the buffer in
280 another window, but do not select that window (@code{dired-display-file}).
282 @item Mouse-1
283 @itemx Mouse-2
284 @findex dired-mouse-find-file-other-window
285 Visit the file named by the line you click on
286 (@code{dired-mouse-find-file-other-window}).  This uses another window
287 to display the file, like the @kbd{o} command.
289 @item v
290 @kindex v @r{(Dired)}
291 @findex dired-view-file
292 View the file described on the current line, using either an external
293 viewing program or @kbd{M-x view-file} (@code{dired-view-file}).
295 @vindex dired-view-command-alist
296 External viewers are used for certain file types under the control of
297 @code{dired-view-command-alist}.  Viewing a file with @code{view-file}
298 is like visiting it, but is slanted toward moving around in the file
299 conveniently and does not allow changing the file.  @xref{Misc File
300 Ops,View File, Miscellaneous File Operations}.
302 @item ^
303 @kindex ^ @r{(Dired)}
304 @findex dired-up-directory
305 Visit the parent directory of the current directory
306 (@code{dired-up-directory}).  This is more convenient than moving to
307 the parent directory's line and typing @kbd{f} there.
308 @end table
310 @node Marks vs Flags
311 @section Dired Marks vs. Flags
313 @cindex marking many files (in Dired)
314   Instead of flagging a file with @samp{D}, you can @dfn{mark} the
315 file with some other character (usually @samp{*}).  Most Dired
316 commands to operate on files use the files marked with @samp{*}, the
317 exception being @kbd{x} which deletes the flagged files.
319   Here are some commands for marking with @samp{*}, or for unmarking or
320 operating on marks.  (@xref{Dired Deletion}, for commands to flag and
321 unflag files.)
323 @table @kbd
324 @item m
325 @itemx * m
326 @kindex m @r{(Dired)}
327 @kindex * m @r{(Dired)}
328 @findex dired-mark
329 Mark the current file with @samp{*} (@code{dired-mark}).  With a numeric
330 argument @var{n}, mark the next @var{n} files starting with the current
331 file.  (If @var{n} is negative, mark the previous @minus{}@var{n}
332 files.)
334 @item * *
335 @kindex * * @r{(Dired)}
336 @findex dired-mark-executables
337 @cindex marking executable files (in Dired)
338 Mark all executable files with @samp{*}
339 (@code{dired-mark-executables}).  With a numeric argument, unmark all
340 those files.
342 @item * @@
343 @kindex * @@ @r{(Dired)}
344 @findex dired-mark-symlinks
345 @cindex marking symbolic links (in Dired)
346 Mark all symbolic links with @samp{*} (@code{dired-mark-symlinks}).
347 With a numeric argument, unmark all those files.
349 @item * /
350 @kindex * / @r{(Dired)}
351 @findex dired-mark-directories
352 @cindex marking subdirectories (in Dired)
353 Mark with @samp{*} all files which are actually directories, except for
354 @file{.} and @file{..} (@code{dired-mark-directories}).  With a numeric
355 argument, unmark all those files.
357 @item * s
358 @kindex * s @r{(Dired)}
359 @findex dired-mark-subdir-files
360 Mark all the files in the current subdirectory, aside from @file{.}
361 and @file{..} (@code{dired-mark-subdir-files}).
363 @item u
364 @itemx * u
365 @kindex u @r{(Dired)}
366 @kindex * u @r{(Dired)}
367 @findex dired-unmark
368 Remove any mark on this line (@code{dired-unmark}).
370 @item @key{DEL}
371 @itemx * @key{DEL}
372 @kindex * DEL @r{(Dired)}
373 @findex dired-unmark-backward
374 @cindex unmarking files (in Dired)
375 Move point to previous line and remove any mark on that line
376 (@code{dired-unmark-backward}).
378 @item * !
379 @kindex * ! @r{(Dired)}
380 @findex dired-unmark-all-marks
381 Remove all marks from all the files in this Dired buffer
382 (@code{dired-unmark-all-marks}).
384 @item * ? @var{markchar}
385 @kindex * ? @r{(Dired)}
386 @findex dired-unmark-all-files
387 Remove all marks that use the character @var{markchar}
388 (@code{dired-unmark-all-files}).  The argument is a single
389 character---do not use @key{RET} to terminate it.  See the description
390 of the @kbd{* c} command below, which lets you replace one mark
391 character with another.
393 With a numeric argument, this command queries about each marked file,
394 asking whether to remove its mark.  You can answer @kbd{y} meaning yes,
395 @kbd{n} meaning no, or @kbd{!} to remove the marks from the remaining
396 files without asking about them.
398 @item * C-n
399 @findex dired-next-marked-file
400 @kindex * C-n @r{(Dired)}
401 Move down to the next marked file (@code{dired-next-marked-file})
402 A file is ``marked'' if it has any kind of mark.
404 @item * C-p
405 @findex dired-prev-marked-file
406 @kindex * C-p @r{(Dired)}
407 Move up to the previous marked file (@code{dired-prev-marked-file})
409 @item * t
410 @kindex * t @r{(Dired)}
411 @findex dired-toggle-marks
412 @cindex toggling marks (in Dired)
413 Toggle all marks (@code{dired-toggle-marks}): files marked with @samp{*}
414 become unmarked, and unmarked files are marked with @samp{*}.  Files
415 marked in any other way are not affected.
417 @item * c @var{old-markchar} @var{new-markchar}
418 @kindex * c @r{(Dired)}
419 @findex dired-change-marks
420 Replace all marks that use the character @var{old-markchar} with marks
421 that use the character @var{new-markchar} (@code{dired-change-marks}).
422 This command is the primary way to create or use marks other than
423 @samp{*} or @samp{D}.  The arguments are single characters---do not use
424 @key{RET} to terminate them.
426 You can use almost any character as a mark character by means of this
427 command, to distinguish various classes of files.  If @var{old-markchar}
428 is a space (@samp{ }), then the command operates on all unmarked files;
429 if @var{new-markchar} is a space, then the command unmarks the files it
430 acts on.
432 To illustrate the power of this command, here is how to put @samp{D}
433 flags on all the files that have no marks, while unflagging all those
434 that already have @samp{D} flags:
436 @example
437 * c D t  * c SPC D  * c t SPC
438 @end example
440 This assumes that no files were already marked with @samp{t}.
442 @item % m @var{regexp} @key{RET}
443 @itemx * % @var{regexp} @key{RET}
444 @findex dired-mark-files-regexp
445 @kindex % m @r{(Dired)}
446 @kindex * % @r{(Dired)}
447 Mark (with @samp{*}) all files whose names match the regular expression
448 @var{regexp} (@code{dired-mark-files-regexp}).  This command is like
449 @kbd{% d}, except that it marks files with @samp{*} instead of flagging
450 with @samp{D}.  @xref{Flagging Many Files}.
452 Only the non-directory part of the file name is used in matching.  Use
453 @samp{^} and @samp{$} to anchor matches.  Exclude subdirectories by
454 hiding them (@pxref{Hiding Subdirectories}).
456 @item % g @var{regexp} @key{RET}
457 @findex dired-mark-files-containing-regexp
458 @kindex % g @r{(Dired)}
459 @cindex finding files containing regexp matches (in Dired)
460 Mark (with @samp{*}) all files whose @emph{contents} contain a match for
461 the regular expression @var{regexp}
462 (@code{dired-mark-files-containing-regexp}).  This command is like
463 @kbd{% m}, except that it searches the file contents instead of the file
464 name.
466 @item C-_
467 @kindex C-_ @r{(Dired)}
468 @findex dired-undo
469 Undo changes in the Dired buffer, such as adding or removing
470 marks (@code{dired-undo}).  @emph{This command does not revert the
471 actual file operations, nor recover lost files!}  It just undoes
472 changes in the buffer itself.  For example, if used after renaming one
473 or more files, @code{dired-undo} restores the original names, which
474 will get the Dired buffer out of sync with the actual contents of the
475 directory.
476 @end table
478 @node Operating on Files
479 @section Operating on Files
480 @cindex operating on files in Dired
482   This section describes the basic Dired commands to operate on one file
483 or several files.  All of these commands are capital letters; all of
484 them use the minibuffer, either to read an argument or to ask for
485 confirmation, before they act.  All of them give you several ways to
486 specify which files to manipulate:
488 @itemize @bullet
489 @item
490 If you give the command a numeric prefix argument @var{n}, it operates
491 on the next @var{n} files, starting with the current file.  (If @var{n}
492 is negative, the command operates on the @minus{}@var{n} files preceding
493 the current line.)
495 @item
496 Otherwise, if some files are marked with @samp{*}, the command operates
497 on all those files.
499 @item
500 Otherwise, the command operates on the current file only.
501 @end itemize
503 @vindex dired-dwim-target
504 @cindex two directories (in Dired)
505   Commands which ask for a destination directory, such as those which
506 copy and rename files or create links for them, try to guess the default
507 target directory for the operation.  Normally, they suggest the Dired
508 buffer's default directory, but if the variable @code{dired-dwim-target}
509 is non-@code{nil}, and if there is another Dired buffer displayed in the
510 next window, that other buffer's directory is suggested instead.
512   Here are the file-manipulating commands that operate on files in this
513 way.  (Some other Dired commands, such as @kbd{!} and the @samp{%}
514 commands, also use these conventions to decide which files to work on.)
516 @table @kbd
517 @findex dired-do-copy
518 @kindex C @r{(Dired)}
519 @cindex copying files (in Dired)
520 @item C @var{new} @key{RET}
521 Copy the specified files (@code{dired-do-copy}).  The argument @var{new}
522 is the directory to copy into, or (if copying a single file) the new
523 name.
525 @vindex dired-copy-preserve-time
526 If @code{dired-copy-preserve-time} is non-@code{nil}, then copying with
527 this command sets the modification time of the new file to be the same
528 as that of the old file.
530 @vindex dired-recursive-copies
531 @cindex recursive copying
532 The variable @code{dired-recursive-copies} controls whether
533 directories are copied recursively.  The default is to not copy
534 recursively, which means that directories cannot be copied.
536 @item D
537 @findex dired-do-delete
538 @kindex D @r{(Dired)}
539 Delete the specified files (@code{dired-do-delete}).  Like the other
540 commands in this section, this command operates on the @emph{marked}
541 files, or the next @var{n} files.  By contrast, @kbd{x}
542 (@code{dired-do-flagged-delete}) deletes all @dfn{flagged} files.
544 @findex dired-do-rename
545 @kindex R @r{(Dired)}
546 @cindex renaming files (in Dired)
547 @item R @var{new} @key{RET}
548 Rename the specified files (@code{dired-do-rename}).  The argument
549 @var{new} is the directory to rename into, or (if renaming a single
550 file) the new name.
552 Dired automatically changes the visited file name of buffers associated
553 with renamed files so that they refer to the new names.
555 @findex dired-do-hardlink
556 @kindex H @r{(Dired)}
557 @cindex hard links (in Dired)
558 @item H @var{new} @key{RET}
559 Make hard links to the specified files (@code{dired-do-hardlink}).  The
560 argument @var{new} is the directory to make the links in, or (if making
561 just one link) the name to give the link.
563 @findex dired-do-symlink
564 @kindex S @r{(Dired)}
565 @cindex symbolic links (creation in Dired)
566 @item S @var{new} @key{RET}
567 Make symbolic links to the specified files (@code{dired-do-symlink}).
568 The argument @var{new} is the directory to make the links in, or (if
569 making just one link) the name to give the link.
571 @findex dired-do-chmod
572 @kindex M @r{(Dired)}
573 @cindex changing file permissions (in Dired)
574 @item M @var{modespec} @key{RET}
575 Change the mode (also called ``permission bits'') of the specified files
576 (@code{dired-do-chmod}).  This uses the @code{chmod} program, so
577 @var{modespec} can be any argument that @code{chmod} can handle.
579 @findex dired-do-chgrp
580 @kindex G @r{(Dired)}
581 @cindex changing file group (in Dired)
582 @item G @var{newgroup} @key{RET}
583 Change the group of the specified files to @var{newgroup}
584 (@code{dired-do-chgrp}).
586 @findex dired-do-chown
587 @kindex O @r{(Dired)}
588 @cindex changing file owner (in Dired)
589 @item O @var{newowner} @key{RET}
590 Change the owner of the specified files to @var{newowner}
591 (@code{dired-do-chown}).  (On most systems, only the superuser can do
592 this.)
594 @vindex dired-chown-program
595 The variable @code{dired-chown-program} specifies the name of the
596 program to use to do the work (different systems put @code{chown} in
597 different places).
599 @findex dired-do-touch
600 @kindex T @r{(Dired)}
601 @cindex changing file time (in Dired)
602 @item T @var{timestamp} @key{RET}
603 Change the time of the specified files (@code{dired-do-touch}).
605 @findex dired-do-print
606 @kindex P @r{(Dired)}
607 @cindex printing files (in Dired)
608 @item P @var{command} @key{RET}
609 Print the specified files (@code{dired-do-print}).  You must specify the
610 command to print them with, but the minibuffer starts out with a
611 suitable guess made using the variables @code{lpr-command} and
612 @code{lpr-switches} (the same variables that @code{lpr-buffer} uses;
613 @pxref{Hardcopy}).
615 @findex dired-do-compress
616 @kindex Z @r{(Dired)}
617 @cindex compressing files (in Dired)
618 @item Z
619 Compress the specified files (@code{dired-do-compress}).  If the file
620 appears to be a compressed file already, it is uncompressed instead.
622 @findex dired-do-load
623 @kindex L @r{(Dired)}
624 @cindex loading several files (in Dired)
625 @item L
626 Load the specified Emacs Lisp files (@code{dired-do-load}).
627 @xref{Lisp Libraries}.
629 @findex dired-do-byte-compile
630 @kindex B @r{(Dired)}
631 @cindex byte-compiling several files (in Dired)
632 @item B
633 Byte compile the specified Emacs Lisp files
634 (@code{dired-do-byte-compile}).  @xref{Byte Compilation,, Byte
635 Compilation, elisp, The Emacs Lisp Reference Manual}.
637 @kindex A @r{(Dired)}
638 @findex dired-do-search
639 @cindex search multiple files (in Dired)
640 @item A @var{regexp} @key{RET}
641 Search all the specified files for the regular expression @var{regexp}
642 (@code{dired-do-search}).
644 This command is a variant of @code{tags-search}.  The search stops at
645 the first match it finds; use @kbd{M-,} to resume the search and find
646 the next match.  @xref{Tags Search}.
648 @kindex Q @r{(Dired)}
649 @findex dired-do-query-replace-regexp
650 @cindex search and replace in multiple files (in Dired)
651 @item Q @var{regexp} @key{RET} @var{to} @key{RET}
652 Perform @code{query-replace-regexp} on each of the specified files,
653 replacing matches for @var{regexp} with the string
654 @var{to} (@code{dired-do-query-replace-regexp}).
656 This command is a variant of @code{tags-query-replace}.  If you exit the
657 query replace loop, you can use @kbd{M-,} to resume the scan and replace
658 more matches.  @xref{Tags Search}.
659 @end table
661 @kindex + @r{(Dired)}
662 @findex dired-create-directory
663   One special file-operation command is @kbd{+}
664 (@code{dired-create-directory}).  This command reads a directory name and
665 creates the directory if it does not already exist.
667 @node Shell Commands in Dired
668 @section Shell Commands in Dired
669 @cindex shell commands, Dired
671 @findex dired-do-shell-command
672 @kindex ! @r{(Dired)}
673 @kindex X @r{(Dired)}
674 The Dired command @kbd{!} (@code{dired-do-shell-command}) reads a shell
675 command string in the minibuffer and runs that shell command on all the
676 specified files.  @kbd{X} is a synonym for @kbd{!}.  You can specify the
677 files to operate on in the usual ways for Dired commands
678 (@pxref{Operating on Files}).  There are two ways of applying a shell
679 command to multiple files:
681 @itemize @bullet
682 @item
683 If you use @samp{*} surrounded by whitespace in the shell command,
684 then the command runs just once, with the list of file names
685 substituted for the @samp{*}.  The order of file names is the order of
686 appearance in the Dired buffer.
688 Thus, @kbd{! tar cf foo.tar * @key{RET}} runs @code{tar} on the entire
689 list of file names, putting them into one tar file @file{foo.tar}.
691 If you want to use @samp{*} as a shell wildcard with whitespace around
692 it, write @samp{*""}.  In the shell, this is equivalent to @samp{*};
693 but since the @samp{*} is not surrounded by whitespace, Dired does
694 not treat it specially.
696 @item
697 If the command string doesn't contain @samp{*} surrounded by
698 whitespace, then it runs once @emph{for each file}.  Normally the file
699 name is added at the end.
701 For example, @kbd{! uudecode @key{RET}} runs @code{uudecode} on each
702 file.
704 @item
705 However, if the command string contains @samp{?} surrounded by
706 whitespace, the current file name is substituted for @samp{?}  (rather
707 than added at the end).  You can use @samp{?} this way more than once
708 in the command, and the same file name replaces each occurrence.
709 @end itemize
711 To iterate over the file names in a more complicated fashion, use an
712 explicit shell loop.  For example, here is how to uuencode each file,
713 making the output file name by appending @samp{.uu} to the input file
714 name:
716 @example
717 for file in * ; do uuencode "$file" "$file" >"$file".uu; done
718 @end example
720 The working directory for the shell command is the top-level directory
721 of the Dired buffer.
723 The @kbd{!} command does not attempt to update the Dired buffer to show
724 new or modified files, because it doesn't really understand shell
725 commands, and does not know what files the shell command changed.  Use
726 the @kbd{g} command to update the Dired buffer (@pxref{Dired
727 Updating}).
729 @node Transforming File Names
730 @section Transforming File Names in Dired
732   This section describes Dired commands which alter file names in a
733 systematic way.
735   Like the basic Dired file-manipulation commands (@pxref{Operating on
736 Files}), the commands described here operate either on the next
737 @var{n} files, or on all files marked with @samp{*}, or on the current
738 file.  (To mark files, use the commands described in @ref{Marks vs
739 Flags}.)
741   All of the commands described in this section work
742 @emph{interactively}: they ask you to confirm the operation for each
743 candidate file.  Thus, you can select more files than you actually
744 need to operate on (e.g., with a regexp that matches many files), and
745 then refine the selection by typing @kbd{y} or @kbd{n} when the
746 command prompts for confirmation.
748 @table @kbd
749 @findex dired-upcase
750 @kindex % u @r{(Dired)}
751 @cindex upcase file names
752 @item % u
753 Rename each of the selected files to an upper-case name
754 (@code{dired-upcase}).  If the old file names are @file{Foo}
755 and @file{bar}, the new names are @file{FOO} and @file{BAR}.
757 @item % l
758 @findex dired-downcase
759 @kindex % l @r{(Dired)}
760 @cindex downcase file names
761 Rename each of the selected files to a lower-case name
762 (@code{dired-downcase}).  If the old file names are @file{Foo} and
763 @file{bar}, the new names are @file{foo} and @file{bar}.
765 @item % R @var{from} @key{RET} @var{to} @key{RET}
766 @kindex % R @r{(Dired)}
767 @findex dired-do-rename-regexp
768 @itemx % C @var{from} @key{RET} @var{to} @key{RET}
769 @kindex % C @r{(Dired)}
770 @findex dired-do-copy-regexp
771 @itemx % H @var{from} @key{RET} @var{to} @key{RET}
772 @kindex % H @r{(Dired)}
773 @findex dired-do-hardlink-regexp
774 @itemx % S @var{from} @key{RET} @var{to} @key{RET}
775 @kindex % S @r{(Dired)}
776 @findex dired-do-symlink-regexp
777 These four commands rename, copy, make hard links and make soft links,
778 in each case computing the new name by regular-expression substitution
779 from the name of the old file.
780 @end table
782   The four regular-expression substitution commands effectively perform
783 a search-and-replace on the selected file names in the Dired buffer.
784 They read two arguments: a regular expression @var{from}, and a
785 substitution pattern @var{to}.
787   The commands match each ``old'' file name against the regular
788 expression @var{from}, and then replace the matching part with @var{to}.
789 You can use @samp{\&} and @samp{\@var{digit}} in @var{to} to refer to
790 all or part of what the pattern matched in the old file name, as in
791 @code{replace-regexp} (@pxref{Regexp Replace}).  If the regular expression
792 matches more than once in a file name, only the first match is replaced.
794   For example, @kbd{% R ^.*$ @key{RET} x-\& @key{RET}} renames each
795 selected file by prepending @samp{x-} to its name.  The inverse of this,
796 removing @samp{x-} from the front of each file name, is also possible:
797 one method is @kbd{% R ^x-\(.*\)$ @key{RET} \1 @key{RET}}; another is
798 @kbd{% R ^x- @key{RET} @key{RET}}.  (Use @samp{^} and @samp{$} to anchor
799 matches that should span the whole filename.)
801   Normally, the replacement process does not consider the files'
802 directory names; it operates on the file name within the directory.  If
803 you specify a numeric argument of zero, then replacement affects the
804 entire absolute file name including directory name.  (Non-zero
805 argument specifies the number of files to operate on.)
807   Often you will want to select the set of files to operate on using the
808 same @var{regexp} that you will use to operate on them.  To do this,
809 mark those files with @kbd{% m @var{regexp} @key{RET}}, then use the
810 same regular expression in the command to operate on the files.  To make
811 this easier, the @kbd{%} commands to operate on files use the last
812 regular expression specified in any @kbd{%} command as a default.
814 @node Comparison in Dired
815 @section File Comparison with Dired
816 @cindex file comparison (in Dired)
817 @cindex compare files (in Dired)
819   Here are two Dired commands that compare specified files using
820 @code{diff}.
822 @table @kbd
823 @item =
824 @findex dired-diff
825 @kindex = @r{(Dired)}
826 Compare the current file (the file at point) with another file (the file
827 at the mark) using the @code{diff} program (@code{dired-diff}).  The
828 file at the mark is the first argument of @code{diff}, and the file at
829 point is the second argument.  Use @kbd{C-@key{SPC}}
830 (@code{set-mark-command}) to set the mark at the first file's line
831 (@pxref{Setting Mark}), since @code{dired-diff} ignores the files marked
832 with the Dired's @kbd{m} command.
834 @findex dired-backup-diff
835 @kindex M-= @r{(Dired)}
836 @item M-=
837 Compare the current file with its latest backup file
838 (@code{dired-backup-diff}).  If the current file is itself a backup,
839 compare it with the file it is a backup of; this way, you can compare
840 a file with any backup version of your choice.
842 The backup file is the first file given to @code{diff}.
843 @end table
845 @node Subdirectories in Dired
846 @section Subdirectories in Dired
847 @cindex subdirectories in Dired
848 @cindex expanding subdirectories in Dired
850   A Dired buffer displays just one directory in the normal case;
851 but you can optionally include its subdirectories as well.
853   The simplest way to include multiple directories in one Dired buffer is
854 to specify the options @samp{-lR} for running @code{ls}.  (If you give a
855 numeric argument when you run Dired, then you can specify these options
856 in the minibuffer.)  That produces a recursive directory listing showing
857 all subdirectories at all levels.
859   But usually all the subdirectories are too many; usually you will
860 prefer to include specific subdirectories only.  You can do this with
861 the @kbd{i} command:
863 @table @kbd
864 @findex dired-maybe-insert-subdir
865 @kindex i @r{(Dired)}
866 @item i
867 @cindex inserted subdirectory (Dired)
868 @cindex in-situ subdirectory (Dired)
869 Insert the contents of a subdirectory later in the buffer.
870 @end table
872 Use the @kbd{i} (@code{dired-maybe-insert-subdir}) command on a line
873 that describes a file which is a directory.  It inserts the contents of
874 that directory into the same Dired buffer, and moves there.  Inserted
875 subdirectory contents follow the top-level directory of the Dired
876 buffer, just as they do in @samp{ls -lR} output.
878 If the subdirectory's contents are already present in the buffer, the
879 @kbd{i} command just moves to it.
881 In either case, @kbd{i} sets the Emacs mark before moving, so @kbd{C-u
882 C-@key{SPC}} takes you back to the old position in the buffer (the line
883 describing that subdirectory).
885 Use the @kbd{l} command (@code{dired-do-redisplay}) to update the
886 subdirectory's contents.  Use @kbd{C-u k} on the subdirectory header
887 line to delete the subdirectory.  @xref{Dired Updating}.
889 @node Subdirectory Motion
890 @section Moving Over Subdirectories
892   When a Dired buffer lists subdirectories, you can use the page motion
893 commands @kbd{C-x [} and @kbd{C-x ]} to move by entire directories
894 (@pxref{Pages}).
896 @cindex header line (Dired)
897 @cindex directory header lines
898   The following commands move across, up and down in the tree of
899 directories within one Dired buffer.  They move to @dfn{directory header
900 lines}, which are the lines that give a directory's name, at the
901 beginning of the directory's contents.
903 @table @kbd
904 @findex dired-next-subdir
905 @kindex C-M-n @r{(Dired)}
906 @item C-M-n
907 Go to next subdirectory header line, regardless of level
908 (@code{dired-next-subdir}).
910 @findex dired-prev-subdir
911 @kindex C-M-p @r{(Dired)}
912 @item C-M-p
913 Go to previous subdirectory header line, regardless of level
914 (@code{dired-prev-subdir}).
916 @findex dired-tree-up
917 @kindex C-M-u @r{(Dired)}
918 @item C-M-u
919 Go up to the parent directory's header line (@code{dired-tree-up}).
921 @findex dired-tree-down
922 @kindex C-M-d @r{(Dired)}
923 @item C-M-d
924 Go down in the directory tree, to the first subdirectory's header line
925 (@code{dired-tree-down}).
927 @findex dired-prev-dirline
928 @kindex < @r{(Dired)}
929 @item <
930 Move up to the previous directory-file line (@code{dired-prev-dirline}).
931 These lines are the ones that describe a directory as a file in its
932 parent directory.
934 @findex dired-next-dirline
935 @kindex > @r{(Dired)}
936 @item >
937 Move down to the next directory-file line (@code{dired-prev-dirline}).
938 @end table
940 @node Hiding Subdirectories
941 @section Hiding Subdirectories
943 @cindex hiding in Dired (Dired)
944   @dfn{Hiding} a subdirectory means to make it invisible, except for its
945 header line, via selective display (@pxref{Selective Display}).
947 @table @kbd
948 @item $
949 @findex dired-hide-subdir
950 @kindex $ @r{(Dired)}
951 Hide or reveal the subdirectory that point is in, and move point to the
952 next subdirectory (@code{dired-hide-subdir}).  A numeric argument serves
953 as a repeat count.
955 @item M-$
956 @findex dired-hide-all
957 @kindex M-$ @r{(Dired)}
958 Hide all subdirectories in this Dired buffer, leaving only their header
959 lines (@code{dired-hide-all}).  Or, if any subdirectory is currently
960 hidden, make all subdirectories visible again.  You can use this command
961 to get an overview in very deep directory trees or to move quickly to
962 subdirectories far away.
963 @end table
965   Ordinary Dired commands never consider files inside a hidden
966 subdirectory.  For example, the commands to operate on marked files
967 ignore files in hidden directories even if they are marked.  Thus you
968 can use hiding to temporarily exclude subdirectories from operations
969 without having to remove the markers.
971   The subdirectory hiding commands toggle; that is, they hide what was
972 visible, and show what was hidden.
974 @node Dired Updating
975 @section Updating the Dired Buffer
976 @cindex updating Dired buffer
977 @cindex refreshing displayed files
979   This section describes commands to update the Dired buffer to reflect
980 outside (non-Dired) changes in the directories and files, and to delete
981 part of the Dired buffer.
983 @table @kbd
984 @item g
985 Update the entire contents of the Dired buffer (@code{revert-buffer}).
987 @item l
988 Update the specified files (@code{dired-do-redisplay}).
990 @item k
991 Delete the specified @emph{file lines}---not the files, just the lines
992 (@code{dired-do-kill-lines}).
994 @item s
995 Toggle between alphabetical order and date/time order
996 (@code{dired-sort-toggle-or-edit}).
998 @item C-u s @var{switches} @key{RET}
999 Refresh the Dired buffer using @var{switches} as
1000 @code{dired-listing-switches}.
1001 @end table
1003 @kindex g @r{(Dired)}
1004 @findex revert-buffer @r{(Dired)}
1005   Type @kbd{g} (@code{revert-buffer}) to update the contents of the
1006 Dired buffer, based on changes in the files and directories listed.
1007 This preserves all marks except for those on files that have vanished.
1008 Hidden subdirectories are updated but remain hidden.
1010 @kindex l @r{(Dired)}
1011 @findex dired-do-redisplay
1012   To update only some of the files, type @kbd{l}
1013 (@code{dired-do-redisplay}).  Like the Dired file-operating commands,
1014 this command operates on the next @var{n} files (or previous
1015 @minus{}@var{n} files), or on the marked files if any, or on the
1016 current file.  Updating the files means reading their current status,
1017 then updating their lines in the buffer to indicate that status.
1019   If you use @kbd{l} on a subdirectory header line, it updates the
1020 contents of the corresponding subdirectory.
1022 @kindex k @r{(Dired)}
1023 @findex dired-do-kill-lines
1024   To delete the specified @emph{file lines} from the buffer---not
1025 delete the files---type @kbd{k} (@code{dired-do-kill-lines}).  Like
1026 the file-operating commands, this command operates on the next @var{n}
1027 files, or on the marked files if any; but it does not operate on the
1028 current file as a last resort.
1030   If you use @kbd{k} with a numeric prefix argument to kill the line
1031 for a file that is a directory, which you have inserted in the Dired
1032 buffer as a subdirectory, then this deletes that subdirectory from the
1033 buffer as well.  Typing @kbd{C-u k} on the header line for a subdirectory
1034 is another way to delete a subdirectory from the Dired buffer.
1036   The @kbd{g} command brings back any individual lines that you have
1037 killed in this way, but not subdirectories---you must use @kbd{i} to
1038 reinsert a subdirectory.
1040 @cindex Dired sorting
1041 @cindex sorting Dired buffer
1042 @kindex s @r{(Dired)}
1043 @findex dired-sort-toggle-or-edit
1044   The files in a Dired buffers are normally listed in alphabetical order
1045 by file names.  Alternatively Dired can sort them by date/time.  The
1046 Dired command @kbd{s} (@code{dired-sort-toggle-or-edit}) switches
1047 between these two sorting modes.  The mode line in a Dired buffer
1048 indicates which way it is currently sorted---by name, or by date.
1050   @kbd{C-u s @var{switches} @key{RET}} lets you specify a new value for
1051 @code{dired-listing-switches}.
1053 @node Dired and Find
1054 @section Dired and @code{find}
1055 @cindex @code{find} and Dired
1057   You can select a set of files for display in a Dired buffer more
1058 flexibly by using the @code{find} utility to choose the files.
1060 @findex find-name-dired
1061   To search for files with names matching a wildcard pattern use
1062 @kbd{M-x find-name-dired}.  It reads arguments @var{directory} and
1063 @var{pattern}, and chooses all the files in @var{directory} or its
1064 subdirectories whose individual names match @var{pattern}.
1066   The files thus chosen are displayed in a Dired buffer in which the
1067 ordinary Dired commands are available.
1069 @findex find-grep-dired
1070   If you want to test the contents of files, rather than their names,
1071 use @kbd{M-x find-grep-dired}.  This command reads two minibuffer
1072 arguments, @var{directory} and @var{regexp}; it chooses all the files in
1073 @var{directory} or its subdirectories that contain a match for
1074 @var{regexp}.  It works by running the programs @code{find} and
1075 @code{grep}.  See also @kbd{M-x grep-find}, in @ref{Compilation}.
1076 Remember to write the regular expression for @code{grep}, not for Emacs.
1077 (An alternative method of showing files whose contents match a given
1078 regexp is the @kbd{% g @var{regexp}} command, see @ref{Marks vs Flags}.)
1080 @findex find-dired
1081   The most general command in this series is @kbd{M-x find-dired}, which
1082 lets you specify any condition that @code{find} can test.  It takes two
1083 minibuffer arguments, @var{directory} and @var{find-args}; it runs
1084 @code{find} in @var{directory}, passing @var{find-args} to tell
1085 @code{find} what condition to test.  To use this command, you need to
1086 know how to use @code{find}.
1088 @vindex find-ls-option
1089   The format of listing produced by these commands is controlled by the
1090 variable @code{find-ls-option}, whose default value specifies using
1091 options @samp{-ld} for @code{ls}.  If your listings are corrupted, you
1092 may need to change the value of this variable.
1094 @findex locate
1095 @findex locate-with-filter
1096 @cindex file database (locate)
1097 @vindex locate-command
1098   @kbd{M-x locate} provides a similar interface to the @code{locate}
1099 program.  @kbd{M-x locate-with-filter} is similar, but keeps only lines
1100 matching a given regular expression.
1102   These buffers don't work entirely like ordinary Dired buffers.  File
1103 operations work, but do not always automatically update the buffer.
1104 Reverting the buffer with @kbd{g} deletes all inserted subdirectories,
1105 and erases all flags and marks.
1107 @node Wdired
1108 @section Editing the Dired Buffer
1110 @cindex wdired mode
1111 @findex wdired-change-to-wdired-mode
1112   Wdired is a special mode that allows you to perform file operations
1113 by editing the Dired buffer directly (the ``W'' in ``Wdired'' stands
1114 for ``writable''.)  To enter Wdired mode, type @kbd{M-x
1115 wdired-change-to-wdired-mode} while in a Dired buffer.  Alternatively,
1116 use @samp{Edit File Names} in the @samp{Immediate} menu bar menu.
1118 @findex wdired-finish-edit
1119   While in Wdired mode, you can rename files by editing the file names
1120 displayed in the Dired buffer.  All the ordinary Emacs editing
1121 commands, including rectangle operations and @code{query-replace}, are
1122 available for this.  Once you are done editing, type @kbd{C-c C-c}
1123 (@code{wdired-finish-edit}).  This applies your changes and switches
1124 back to ordinary Dired mode.
1126   Apart from simply renaming files, you can move a file to another
1127 directory by typing in the new file name (either absolute or
1128 relative).  To mark a file for deletion, delete the entire filename.
1129 To change the target of a symbolic link, just edit the target name
1130 displayed next to the link name.
1132   The rest of the text in the buffer, such as the file sizes and
1133 modification dates, is marked read-only, so you can't edit it.
1134 However, if you set @code{wdired-allow-to-change-permissions} to
1135 @code{t}, the file permission bits can also be edited.  For example,
1136 you can change @samp{-rw-r--r--} to @samp{-rw-rw-rw-} to make a file
1137 world-writable.  These changes also take effect when you type @kbd{C-c
1138 C-c}.
1140 @node Misc Dired Features
1141 @section Other Dired Features
1143 @cindex Adding to the kill ring in Dired.
1144 @kindex w @r{(Dired)}
1145 @findex dired-copy-filename-as-kill
1146   The @kbd{w} command (@code{dired-copy-filename-as-kill}) puts the
1147 names of the marked (or next @var{n}) files into the kill ring, as if
1148 you had killed them with @kbd{C-w}.
1150   The main purpose of this command is so that you can yank the file
1151 names into arguments for other Emacs commands.  It also displays what
1152 was pushed onto the kill ring, so you can use it to display the list
1153 of currently marked files in the echo area.  With a zero prefix
1154 argument @var{n}=0, this uses the absolute file name of each marked
1155 file.  With just @kbd{C-u} as the prefix argument, it uses the
1156 relative file name of each marked file.  As a special case, if no
1157 prefix argument is given and point is on a directory headerline,
1158 @kbd{w} gives you the name of that directory without looking for
1159 marked files.
1161   On the X window system, Emacs supports the ``drag and drop''
1162 protocol.  You can drag a file object from another program, and drop
1163 it onto a Dired buffer; this either moves, copies, or creates a link
1164 to the file in that directory.  Precisely which action is taken is
1165 determined by the originating program.  Dragging files out of a Dired
1166 buffer is currently not supported.
1168 @ignore
1169    arch-tag: d105f9b9-fc1b-4c5f-a949-9b2cf3ca2fc1
1170 @end ignore