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