(parens-require-spaces): Doc fix.
[bpt/emacs.git] / doc / emacs / dired.texi
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001,
3 @c 2002, 2003, 2004, 2005, 2006, 2007, 2008 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}
17 are redefined for special Dired commands. Some Dired commands
18 @dfn{mark} or @dfn{flag} the @dfn{current file} (that is, the file on
19 the current line); other commands operate on the marked files or on
20 the flagged files. You first mark certain files in order to operate
21 on all of them with on command.
22
23 The Dired-X package provides various extra features for Dired mode.
24 @xref{Top, Dired-X,,dired-x, Dired Extra Version 2 User's Manual}.
25
26 @menu
27 * Enter: Dired Enter. How to invoke Dired.
28 * Navigation: Dired Navigation. Special motion commands in the Dired buffer.
29 * Deletion: Dired Deletion. Deleting files with Dired.
30 * Flagging Many Files:: Flagging files based on their names.
31 * Visit: Dired Visiting. Other file operations through Dired.
32 * Marks vs Flags:: Flagging for deletion vs marking.
33 * Operating on Files:: How to copy, rename, print, compress, etc.
34 either one file or several files.
35 * Shell Commands in Dired:: Running a shell command on the marked files.
36 * Transforming File Names:: Using patterns to rename multiple files.
37 * Comparison in Dired:: Running `diff' by way of Dired.
38 * Subdirectories in Dired:: Adding subdirectories to the Dired buffer.
39 @ifnottex
40 * Subdir Switches:: Subdirectory switches in Dired.
41 @end ifnottex
42 * Subdirectory Motion:: Moving across subdirectories, and up and down.
43 * Hiding Subdirectories:: Making subdirectories visible or invisible.
44 * Updating: Dired Updating. Discarding lines for files of no interest.
45 * Find: Dired and Find. Using `find' to choose the files for Dired.
46 * Wdired:: Operating on files by editing the Dired buffer.
47 * Image-Dired:: Viewing image thumbnails in Dired
48 * Misc: Misc Dired Features. Various other features.
49 @end menu
50
51 @node Dired Enter
52 @section Entering Dired
53
54 @findex dired
55 @kindex C-x d
56 @vindex dired-listing-switches
57 To invoke Dired, do @kbd{C-x d} or @kbd{M-x dired}. The command
58 reads a directory name or wildcard file name pattern as a minibuffer
59 argument to specify the files to list. @kbd{C-x C-f} given a
60 directory name also invokes Dired. Where @code{dired} differs from
61 @code{list-directory} is that it puts the buffer into Dired mode, so
62 that the special commands of Dired are available.
63
64 The variable @code{dired-listing-switches} specifies the options to
65 give to @code{ls} for listing the directory; this string @emph{must}
66 contain @samp{-l}. If you use a numeric prefix argument with the
67 @code{dired} command, you can specify the @code{ls} switches with the
68 minibuffer before you enter the directory specification. No matter
69 how they are specified, the @code{ls} switches can include short
70 options (that is, single characters) requiring no arguments, and long
71 options (starting with @samp{--}) whose arguments are specified with
72 @samp{=}.
73
74 On MS-Windows and MS-DOS systems, Emacs @emph{emulates} @code{ls};
75 see @ref{ls in Lisp}, for options and peculiarities of that emulation.
76
77
78 @findex dired-other-window
79 @kindex C-x 4 d
80 @findex dired-other-frame
81 @kindex C-x 5 d
82 To display the Dired buffer in another window rather than in the
83 selected window, use @kbd{C-x 4 d} (@code{dired-other-window}) instead
84 of @kbd{C-x d}. @kbd{C-x 5 d} (@code{dired-other-frame}) uses a
85 separate frame to display the Dired buffer.
86
87 @node Dired Navigation
88 @section Navigation in the Dired Buffer
89
90 @kindex C-n @r{(Dired)}
91 @kindex C-p @r{(Dired)}
92 All the usual Emacs cursor motion commands are available in Dired
93 buffers. The keys @kbd{C-n} and @kbd{C-p} are redefined to put the
94 cursor at the beginning of the file name on the line, rather than at
95 the beginning of the line.
96
97 @kindex SPC @r{(Dired)}
98 For extra convenience, @key{SPC} and @kbd{n} in Dired are equivalent
99 to @kbd{C-n}. @kbd{p} is equivalent to @kbd{C-p}. (Moving by lines is
100 so common in Dired that it deserves to be easy to type.) @key{DEL}
101 (move up and unflag) is often useful simply for moving up.
102
103 @findex dired-goto-file
104 @kindex j @r{(Dired)}
105 @kbd{j} (@code{dired-goto-file}) moves point to the line that
106 describes a specified file or directory.
107
108 Some additional navigation commands are available when the Dired
109 buffer includes several directories. @xref{Subdirectory Motion}.
110
111 @node Dired Deletion
112 @section Deleting Files with Dired
113 @cindex flagging files (in Dired)
114 @cindex deleting files (in Dired)
115
116 One of the most frequent uses of Dired is to first @dfn{flag} files for
117 deletion, then delete the files that were flagged.
118
119 @table @kbd
120 @item d
121 Flag this file for deletion.
122 @item u
123 Remove deletion flag on this line.
124 @item @key{DEL}
125 Move point to previous line and remove the deletion flag on that line.
126 @item x
127 Delete the files that are flagged for deletion.
128 @end table
129
130 @kindex d @r{(Dired)}
131 @findex dired-flag-file-deletion
132 You can flag a file for deletion by moving to the line describing
133 the file and typing @kbd{d} (@code{dired-flag-file-deletion}). The
134 deletion flag is visible as a @samp{D} at the beginning of the line.
135 This command moves point to the next line, so that repeated @kbd{d}
136 commands flag successive files. A numeric argument serves as a repeat
137 count.
138
139 @kindex u @r{(Dired deletion)}
140 @kindex DEL @r{(Dired)}
141 The reason for flagging files for deletion, rather than deleting
142 files immediately, is to reduce the danger of deleting a file
143 accidentally. Until you direct Dired to delete the flagged files, you
144 can remove deletion flags using the commands @kbd{u} and @key{DEL}.
145 @kbd{u} (@code{dired-unmark}) works just like @kbd{d}, but removes
146 flags rather than making flags. @key{DEL}
147 (@code{dired-unmark-backward}) moves upward, removing flags; it is
148 like @kbd{u} with argument @minus{}1.
149
150 @kindex x @r{(Dired)}
151 @findex dired-do-flagged-delete
152 @cindex expunging (Dired)
153 To delete the flagged files, type @kbd{x}
154 (@code{dired-do-flagged-delete}). (This is also known as
155 @dfn{expunging}.) This command first displays a list of all the file
156 names flagged for deletion, and requests confirmation with @kbd{yes}.
157 If you confirm, Dired deletes the flagged files, then deletes their
158 lines from the text of the Dired buffer. The Dired buffer, with
159 somewhat fewer lines, remains selected.
160
161 If you answer @kbd{no} or quit with @kbd{C-g} when asked to confirm, you
162 return immediately to Dired, with the deletion flags still present in
163 the buffer, and no files actually deleted.
164
165 @cindex recursive deletion
166 @vindex dired-recursive-deletes
167 You can delete empty directories just like other files, but normally
168 Dired cannot delete directories that are nonempty. If the variable
169 @code{dired-recursive-deletes} is non-@code{nil}, then Dired can
170 delete nonempty directories including all their contents. That can
171 be somewhat risky.
172
173 @node Flagging Many Files
174 @section Flagging Many Files at Once
175 @cindex flagging many files for deletion (in Dired)
176
177 @table @kbd
178 @item #
179 Flag all auto-save files (files whose names start and end with @samp{#})
180 for deletion (@pxref{Auto Save}).
181
182 @item ~
183 Flag all backup files (files whose names end with @samp{~}) for deletion
184 (@pxref{Backup}).
185
186 @item &
187 Flag for deletion all files with certain kinds of names which suggest
188 you could easily create those files again.
189
190 @item .@: @r{(Period)}
191 Flag excess numeric backup files for deletion. The oldest and newest
192 few backup files of any one file are exempt; the middle ones are
193 flagged.
194
195 @item % d @var{regexp} @key{RET}
196 Flag for deletion all files whose names match the regular expression
197 @var{regexp}.
198 @end table
199
200 The @kbd{#}, @kbd{~}, @kbd{&}, and @kbd{.} commands flag many files for
201 deletion, based on their file names. These commands are useful
202 precisely because they do not themselves delete any files; you can
203 remove the deletion flags from any flagged files that you really wish to
204 keep.@refill
205
206 @kindex & @r{(Dired)}
207 @findex dired-flag-garbage-files
208 @vindex dired-garbage-files-regexp
209 @cindex deleting some backup files
210 @kbd{&} (@code{dired-flag-garbage-files}) flags files whose names
211 match the regular expression specified by the variable
212 @code{dired-garbage-files-regexp}. By default, this matches certain
213 files produced by @TeX{}, @samp{.bak} files, and the @samp{.orig} and
214 @samp{.rej} files produced by @code{patch}.
215
216 @kindex # @r{(Dired)}
217 @findex dired-flag-auto-save-files
218 @cindex deleting auto-save files
219 @kbd{#} (@code{dired-flag-auto-save-files}) flags for deletion all
220 files whose names look like auto-save files---that is, files whose
221 names begin and end with @samp{#}. @xref{Auto Save}.
222
223 @kindex ~ @r{(Dired)}
224 @findex dired-flag-backup-files
225 @kbd{~} (@code{dired-flag-backup-files}) flags for deletion all
226 files whose names say they are backup files---that is, files whose
227 names end in @samp{~}. @xref{Backup}.
228
229 @kindex . @r{(Dired)}
230 @vindex dired-kept-versions
231 @findex dired-clean-directory
232 @kbd{.} (period, @code{dired-clean-directory}) flags just some of the
233 backup files for deletion: all but the oldest few and newest few backups
234 of any one file. Normally @code{dired-kept-versions} (@strong{not}
235 @code{kept-new-versions}; that applies only when saving) specifies the
236 number of newest versions of each file to keep, and
237 @code{kept-old-versions} specifies the number of oldest versions to
238 keep.
239
240 Period with a positive numeric argument, as in @kbd{C-u 3 .},
241 specifies the number of newest versions to keep, overriding
242 @code{dired-kept-versions}. A negative numeric argument overrides
243 @code{kept-old-versions}, using minus the value of the argument to
244 specify the number of oldest versions of each file to keep.
245
246 @findex dired-flag-files-regexp
247 @kindex % d @r{(Dired)}
248 The @kbd{% d} command flags all files whose names match a specified
249 regular expression (@code{dired-flag-files-regexp}). Only the
250 non-directory part of the file name is used in matching. You can use
251 @samp{^} and @samp{$} to anchor matches. You can exclude certain
252 subdirectories from marking by hiding them while you use @kbd{% d}.
253 @xref{Hiding Subdirectories}.
254
255 @node Dired Visiting
256 @section Visiting Files in Dired
257
258 There are several Dired commands for visiting or examining the files
259 listed in the Dired buffer. All of them apply to the current line's
260 file; if that file is really a directory, these commands invoke Dired on
261 that subdirectory (making a separate Dired buffer).
262
263 @table @kbd
264 @item f
265 @kindex f @r{(Dired)}
266 @findex dired-find-file
267 Visit the file described on the current line, like typing @kbd{C-x C-f}
268 and supplying that file name (@code{dired-find-file}). @xref{Visiting}.
269
270 @item @key{RET}
271 @itemx e
272 @kindex RET @r{(Dired)}
273 @kindex e @r{(Dired)}
274 Equivalent to @kbd{f}.
275
276 @ignore @c This command seems too risky to document at all.
277 @item a
278 @kindex a @r{(Dired)}
279 @findex dired-find-alternate-file
280 Like @kbd{f}, but replaces the contents of the Dired buffer with
281 that of an alternate file or directory (@code{dired-find-alternate-file}).
282 @end ignore
283
284 @item o
285 @kindex o @r{(Dired)}
286 @findex dired-find-file-other-window
287 Like @kbd{f}, but uses another window to display the file's buffer
288 (@code{dired-find-file-other-window}). The Dired buffer remains visible
289 in the first window. This is like using @kbd{C-x 4 C-f} to visit the
290 file. @xref{Windows}.
291
292 @item C-o
293 @kindex C-o @r{(Dired)}
294 @findex dired-display-file
295 Visit the file described on the current line, and display the buffer in
296 another window, but do not select that window (@code{dired-display-file}).
297
298 @item Mouse-1
299 @itemx Mouse-2
300 @findex dired-mouse-find-file-other-window
301 Visit the file named by the line you click on
302 (@code{dired-mouse-find-file-other-window}). This uses another window
303 to display the file, like the @kbd{o} command.
304
305 @item v
306 @kindex v @r{(Dired)}
307 @findex dired-view-file
308 View the file described on the current line, using @kbd{M-x view-file}
309 (@code{dired-view-file}). Viewing a file with @code{view-file} is
310 like visiting it, but is slanted toward moving around in the file
311 conveniently and does not allow changing the file. @xref{Misc File
312 Ops, View File, Miscellaneous File Operations}.
313
314 @item ^
315 @kindex ^ @r{(Dired)}
316 @findex dired-up-directory
317 Visit the parent directory of the current directory
318 (@code{dired-up-directory}). This is equivalent to moving to the line
319 for @file{..} and typing @kbd{f} there.
320 @end table
321
322 @node Marks vs Flags
323 @section Dired Marks vs. Flags
324
325 @cindex marking many files (in Dired)
326 Instead of flagging a file with @samp{D}, you can @dfn{mark} the
327 file with some other character (usually @samp{*}). Most Dired
328 commands to operate on files use the files marked with @samp{*}. The
329 only command that operates on flagged files is @kbd{x}, which expunges
330 them.
331
332 Here are some commands for marking with @samp{*}, for unmarking, and
333 for operating on marks. (@xref{Dired Deletion}, for commands to flag
334 and unflag files.)
335
336 @table @kbd
337 @item m
338 @itemx * m
339 @kindex m @r{(Dired)}
340 @kindex * m @r{(Dired)}
341 @findex dired-mark
342 Mark the current file with @samp{*} (@code{dired-mark}). With a numeric
343 argument @var{n}, mark the next @var{n} files starting with the current
344 file. (If @var{n} is negative, mark the previous @minus{}@var{n}
345 files.)
346
347 @item * *
348 @kindex * * @r{(Dired)}
349 @findex dired-mark-executables
350 @cindex marking executable files (in Dired)
351 Mark all executable files with @samp{*}
352 (@code{dired-mark-executables}). With a numeric argument, unmark all
353 those files.
354
355 @item * @@
356 @kindex * @@ @r{(Dired)}
357 @findex dired-mark-symlinks
358 @cindex marking symbolic links (in Dired)
359 Mark all symbolic links with @samp{*} (@code{dired-mark-symlinks}).
360 With a numeric argument, unmark all those files.
361
362 @item * /
363 @kindex * / @r{(Dired)}
364 @findex dired-mark-directories
365 @cindex marking subdirectories (in Dired)
366 Mark with @samp{*} all files which are directories, except for
367 @file{.} and @file{..} (@code{dired-mark-directories}). With a numeric
368 argument, unmark all those files.
369
370 @item * s
371 @kindex * s @r{(Dired)}
372 @findex dired-mark-subdir-files
373 Mark all the files in the current subdirectory, aside from @file{.}
374 and @file{..} (@code{dired-mark-subdir-files}).
375
376 @item u
377 @itemx * u
378 @kindex u @r{(Dired)}
379 @kindex * u @r{(Dired)}
380 @findex dired-unmark
381 Remove any mark on this line (@code{dired-unmark}).
382
383 @item @key{DEL}
384 @itemx * @key{DEL}
385 @kindex * DEL @r{(Dired)}
386 @findex dired-unmark-backward
387 @cindex unmarking files (in Dired)
388 Move point to previous line and remove any mark on that line
389 (@code{dired-unmark-backward}).
390
391 @item * !
392 @itemx U
393 @kindex * ! @r{(Dired)}
394 @kindex U @r{(Dired)}
395 @findex dired-unmark-all-marks
396 Remove all marks from all the files in this Dired buffer
397 (@code{dired-unmark-all-marks}).
398
399 @item * ? @var{markchar}
400 @itemx M-@key{DEL}
401 @kindex * ? @r{(Dired)}
402 @kindex M-DEL @r{(Dired)}
403 @findex dired-unmark-all-files
404 Remove all marks that use the character @var{markchar}
405 (@code{dired-unmark-all-files}). The argument is a single
406 character---do not use @key{RET} to terminate it. See the description
407 of the @kbd{* c} command below, which lets you replace one mark
408 character with another.
409
410 With a numeric argument, this command queries about each marked file,
411 asking whether to remove its mark. You can answer @kbd{y} meaning yes,
412 @kbd{n} meaning no, or @kbd{!} to remove the marks from the remaining
413 files without asking about them.
414
415 @item * C-n
416 @itemx M-@}
417 @findex dired-next-marked-file
418 @kindex * C-n @r{(Dired)}
419 @kindex M-@} @r{(Dired)}
420 Move down to the next marked file (@code{dired-next-marked-file})
421 A file is ``marked'' if it has any kind of mark.
422
423 @item * C-p
424 @itemx M-@{
425 @findex dired-prev-marked-file
426 @kindex * C-p @r{(Dired)}
427 @kindex M-@{ @r{(Dired)}
428 Move up to the previous marked file (@code{dired-prev-marked-file})
429
430 @item t
431 @itemx * t
432 @kindex t @r{(Dired)}
433 @kindex * t @r{(Dired)}
434 @findex dired-toggle-marks
435 @cindex toggling marks (in Dired)
436 Toggle all marks (@code{dired-toggle-marks}): files marked with @samp{*}
437 become unmarked, and unmarked files are marked with @samp{*}. Files
438 marked in any other way are not affected.
439
440 @item * c @var{old-markchar} @var{new-markchar}
441 @kindex * c @r{(Dired)}
442 @findex dired-change-marks
443 Replace all marks that use the character @var{old-markchar} with marks
444 that use the character @var{new-markchar} (@code{dired-change-marks}).
445 This command is the primary way to create or use marks other than
446 @samp{*} or @samp{D}. The arguments are single characters---do not use
447 @key{RET} to terminate them.
448
449 You can use almost any character as a mark character by means of this
450 command, to distinguish various classes of files. If @var{old-markchar}
451 is a space (@samp{ }), then the command operates on all unmarked files;
452 if @var{new-markchar} is a space, then the command unmarks the files it
453 acts on.
454
455 To illustrate the power of this command, here is how to put @samp{D}
456 flags on all the files that have no marks, while unflagging all those
457 that already have @samp{D} flags:
458
459 @example
460 * c D t * c SPC D * c t SPC
461 @end example
462
463 This assumes that no files were already marked with @samp{t}.
464
465 @item % m @var{regexp} @key{RET}
466 @itemx * % @var{regexp} @key{RET}
467 @findex dired-mark-files-regexp
468 @kindex % m @r{(Dired)}
469 @kindex * % @r{(Dired)}
470 Mark (with @samp{*}) all files whose names match the regular expression
471 @var{regexp} (@code{dired-mark-files-regexp}). This command is like
472 @kbd{% d}, except that it marks files with @samp{*} instead of flagging
473 with @samp{D}.
474
475 Only the non-directory part of the file name is used in matching. Use
476 @samp{^} and @samp{$} to anchor matches. You can exclude
477 subdirectories by temporarily hiding them (@pxref{Hiding
478 Subdirectories}).
479
480 @item % g @var{regexp} @key{RET}
481 @findex dired-mark-files-containing-regexp
482 @kindex % g @r{(Dired)}
483 @cindex finding files containing regexp matches (in Dired)
484 Mark (with @samp{*}) all files whose @emph{contents} contain a match for
485 the regular expression @var{regexp}
486 (@code{dired-mark-files-containing-regexp}). This command is like
487 @kbd{% m}, except that it searches the file contents instead of the file
488 name.
489
490 @item C-x u
491 @itemx C-_
492 @itemx C-/
493 @kindex C-_ @r{(Dired)}
494 @findex dired-undo
495 Undo changes in the Dired buffer, such as adding or removing
496 marks (@code{dired-undo}). @emph{This command does not revert the
497 actual file operations, nor recover lost files!} It just undoes
498 changes in the buffer itself.
499
500 In some cases, using this after commands that operate on files can
501 cause trouble. For example, after renaming one or more files,
502 @code{dired-undo} restores the original names in the Dired buffer,
503 which gets the Dired buffer out of sync with the actual contents of
504 the directory.
505 @end table
506
507 @node Operating on Files
508 @section Operating on Files
509 @cindex operating on files in Dired
510
511 This section describes the basic Dired commands to operate on one file
512 or several files. All of these commands are capital letters; all of
513 them use the minibuffer, either to read an argument or to ask for
514 confirmation, before they act. All of them let you specify the
515 files to manipulate in these ways:
516
517 @itemize @bullet
518 @item
519 If you give the command a numeric prefix argument @var{n}, it operates
520 on the next @var{n} files, starting with the current file. (If @var{n}
521 is negative, the command operates on the @minus{}@var{n} files preceding
522 the current line.)
523
524 @item
525 Otherwise, if some files are marked with @samp{*}, the command operates
526 on all those files.
527
528 @item
529 Otherwise, the command operates on the current file only.
530 @end itemize
531
532 @noindent
533 Certain other Dired commands, such as @kbd{!} and the @samp{%}
534 commands, use the same conventions to decide which files to work on.
535
536 @vindex dired-dwim-target
537 @cindex two directories (in Dired)
538 Commands which ask for a destination directory, such as those which
539 copy and rename files or create links for them, try to guess the default
540 target directory for the operation. Normally, they suggest the Dired
541 buffer's default directory, but if the variable @code{dired-dwim-target}
542 is non-@code{nil}, and if there is another Dired buffer displayed in the
543 next window, that other buffer's directory is suggested instead.
544
545 Here are the file-manipulating Dired commands that operate on files.
546
547 @table @kbd
548 @findex dired-do-copy
549 @kindex C @r{(Dired)}
550 @cindex copying files (in Dired)
551 @item C @var{new} @key{RET}
552 Copy the specified files (@code{dired-do-copy}). The argument @var{new}
553 is the directory to copy into, or (if copying a single file) the new
554 name. This is like the shell command @code{cp}.
555
556 @vindex dired-copy-preserve-time
557 If @code{dired-copy-preserve-time} is non-@code{nil}, then copying
558 with this command preserves the modification time of the old file in
559 the copy, like @samp{cp -p}.
560
561 @vindex dired-recursive-copies
562 @cindex recursive copying
563 The variable @code{dired-recursive-copies} controls whether to copy
564 directories recursively (like @samp{cp -r}). The default is
565 @code{nil}, which means that directories cannot be copied.
566
567 @item D
568 @findex dired-do-delete
569 @kindex D @r{(Dired)}
570 Delete the specified files (@code{dired-do-delete}). This is like the
571 shell command @code{rm}.
572
573 Like the other commands in this section, this command operates on the
574 @emph{marked} files, or the next @var{n} files. By contrast, @kbd{x}
575 (@code{dired-do-flagged-delete}) deletes all @dfn{flagged} files.
576
577 @findex dired-do-rename
578 @kindex R @r{(Dired)}
579 @cindex renaming files (in Dired)
580 @cindex moving files (in Dired)
581 @item R @var{new} @key{RET}
582 Rename the specified files (@code{dired-do-rename}). If you rename a
583 single file, the argument @var{new} is the new name of the file. If
584 you rename several files, the argument @var{new} is the directory into
585 which to move the files (this is like the shell command @code{mv}).
586
587 Dired automatically changes the visited file name of buffers associated
588 with renamed files so that they refer to the new names.
589
590 @findex dired-do-hardlink
591 @kindex H @r{(Dired)}
592 @cindex hard links (in Dired)
593 @item H @var{new} @key{RET}
594 Make hard links to the specified files (@code{dired-do-hardlink}).
595 This is like the shell command @code{ln}. The argument @var{new} is
596 the directory to make the links in, or (if making just one link) the
597 name to give the link.
598
599 @findex dired-do-symlink
600 @kindex S @r{(Dired)}
601 @cindex symbolic links (creation in Dired)
602 @item S @var{new} @key{RET}
603 Make symbolic links to the specified files (@code{dired-do-symlink}).
604 This is like @samp{ln -s}. The argument @var{new} is the directory to
605 make the links in, or (if making just one link) the name to give the
606 link.
607
608 @findex dired-do-chmod
609 @kindex M @r{(Dired)}
610 @cindex changing file permissions (in Dired)
611 @item M @var{modespec} @key{RET}
612 Change the mode (also called ``permission bits'') of the specified files
613 (@code{dired-do-chmod}). This uses the @code{chmod} program, so
614 @var{modespec} can be any argument that @code{chmod} can handle.
615
616 @findex dired-do-chgrp
617 @kindex G @r{(Dired)}
618 @cindex changing file group (in Dired)
619 @item G @var{newgroup} @key{RET}
620 Change the group of the specified files to @var{newgroup}
621 (@code{dired-do-chgrp}).
622
623 @findex dired-do-chown
624 @kindex O @r{(Dired)}
625 @cindex changing file owner (in Dired)
626 @item O @var{newowner} @key{RET}
627 Change the owner of the specified files to @var{newowner}
628 (@code{dired-do-chown}). (On most systems, only the superuser can do
629 this.)
630
631 @vindex dired-chown-program
632 The variable @code{dired-chown-program} specifies the name of the
633 program to use to do the work (different systems put @code{chown} in
634 different places).
635
636 @findex dired-do-touch
637 @kindex T @r{(Dired)}
638 @cindex changing file time (in Dired)
639 @item T @var{timestamp} @key{RET}
640 Touch the specified files (@code{dired-do-touch}). This means
641 updating their modification times to the present time. This is like
642 the shell command @code{touch}.
643
644 @findex dired-do-print
645 @kindex P @r{(Dired)}
646 @cindex printing files (in Dired)
647 @item P @var{command} @key{RET}
648 Print the specified files (@code{dired-do-print}). You must specify the
649 command to print them with, but the minibuffer starts out with a
650 suitable guess made using the variables @code{lpr-command} and
651 @code{lpr-switches} (the same variables that @code{lpr-buffer} uses;
652 @pxref{Printing}).
653
654 @findex dired-do-compress
655 @kindex Z @r{(Dired)}
656 @cindex compressing files (in Dired)
657 @item Z
658 Compress the specified files (@code{dired-do-compress}). If the file
659 appears to be a compressed file already, uncompress it instead.
660
661 @findex dired-do-load
662 @kindex L @r{(Dired)}
663 @cindex loading several files (in Dired)
664 @item L
665 Load the specified Emacs Lisp files (@code{dired-do-load}).
666 @xref{Lisp Libraries}.
667
668 @findex dired-do-byte-compile
669 @kindex B @r{(Dired)}
670 @cindex byte-compiling several files (in Dired)
671 @item B
672 Byte compile the specified Emacs Lisp files
673 (@code{dired-do-byte-compile}). @xref{Byte Compilation,, Byte
674 Compilation, elisp, The Emacs Lisp Reference Manual}.
675
676 @kindex A @r{(Dired)}
677 @findex dired-do-search
678 @cindex search multiple files (in Dired)
679 @item A @var{regexp} @key{RET}
680 Search all the specified files for the regular expression @var{regexp}
681 (@code{dired-do-search}).
682
683 This command is a variant of @code{tags-search}. The search stops at
684 the first match it finds; use @kbd{M-,} to resume the search and find
685 the next match. @xref{Tags Search}.
686
687 @kindex Q @r{(Dired)}
688 @findex dired-do-query-replace-regexp
689 @cindex search and replace in multiple files (in Dired)
690 @item Q @var{regexp} @key{RET} @var{to} @key{RET}
691 Perform @code{query-replace-regexp} on each of the specified files,
692 replacing matches for @var{regexp} with the string
693 @var{to} (@code{dired-do-query-replace-regexp}).
694
695 This command is a variant of @code{tags-query-replace}. If you exit the
696 query replace loop, you can use @kbd{M-,} to resume the scan and replace
697 more matches. @xref{Tags Search}.
698 @end table
699
700 @node Shell Commands in Dired
701 @section Shell Commands in Dired
702 @cindex shell commands, Dired
703
704 @findex dired-do-shell-command
705 @kindex ! @r{(Dired)}
706 @kindex X @r{(Dired)}
707 The Dired command @kbd{!} (@code{dired-do-shell-command}) reads a
708 shell command string in the minibuffer and runs that shell command on
709 all the specified files. (@kbd{X} is a synonym for @kbd{!}.) You can
710 specify the files to operate on in the usual ways for Dired commands
711 (@pxref{Operating on Files}).
712
713 The working directory for the shell command is the top-level directory
714 of the Dired buffer.
715
716 There are two ways of applying a shell command to multiple files:
717
718 @itemize @bullet
719 @item
720 If you use @samp{*} surrounded by whitespace in the shell command,
721 then the command runs just once, with the list of file names
722 substituted for the @samp{*}. The order of file names is the order of
723 appearance in the Dired buffer.
724
725 Thus, @kbd{! tar cf foo.tar * @key{RET}} runs @code{tar} on the entire
726 list of file names, putting them into one tar file @file{foo.tar}.
727
728 If you want to use @samp{*} as a shell wildcard with whitespace around
729 it, write @samp{*""}. In the shell, this is equivalent to @samp{*};
730 but since the @samp{*} is not surrounded by whitespace, Dired does
731 not treat it specially.
732
733 @item
734 If the command string doesn't contain @samp{*} surrounded by
735 whitespace, then it runs once @emph{for each file}. Normally the file
736 name is added at the end.
737
738 For example, @kbd{! uudecode @key{RET}} runs @code{uudecode} on each
739 file.
740
741 @item
742 However, if the command string contains @samp{?} surrounded by
743 whitespace, the current file name is substituted for @samp{?} (rather
744 than added at the end). You can use @samp{?} this way more than once
745 in the command, and the same file name replaces each occurrence.
746 @end itemize
747
748 To iterate over the file names in a more complicated fashion, use an
749 explicit shell loop. For example, here is how to uuencode each file,
750 making the output file name by appending @samp{.uu} to the input file
751 name:
752
753 @example
754 for file in * ; do uuencode "$file" "$file" >"$file".uu; done
755 @end example
756
757 The @kbd{!} command does not attempt to update the Dired buffer to
758 show new or modified files, because it doesn't understand shell
759 commands, and does not know what files the shell command changed. Use
760 the @kbd{g} command to update the Dired buffer (@pxref{Dired
761 Updating}).
762
763 @node Transforming File Names
764 @section Transforming File Names in Dired
765
766 This section describes Dired commands which alter file names in a
767 systematic way. Each command operates on some or all of the marked
768 files, using a new name made by transforming the existing name.
769
770 Like the basic Dired file-manipulation commands (@pxref{Operating on
771 Files}), the commands described here operate either on the next
772 @var{n} files, or on all files marked with @samp{*}, or on the current
773 file. (To mark files, use the commands described in @ref{Marks vs
774 Flags}.)
775
776 All of the commands described in this section work
777 @emph{interactively}: they ask you to confirm the operation for each
778 candidate file. Thus, you can select more files than you actually
779 need to operate on (e.g., with a regexp that matches many files), and
780 then filter the selected names by typing @kbd{y} or @kbd{n} when the
781 command prompts for confirmation.
782
783 @table @kbd
784 @findex dired-upcase
785 @kindex % u @r{(Dired)}
786 @cindex upcase file names
787 @item % u
788 Rename each of the selected files to an upper-case name
789 (@code{dired-upcase}). If the old file names are @file{Foo}
790 and @file{bar}, the new names are @file{FOO} and @file{BAR}.
791
792 @item % l
793 @findex dired-downcase
794 @kindex % l @r{(Dired)}
795 @cindex downcase file names
796 Rename each of the selected files to a lower-case name
797 (@code{dired-downcase}). If the old file names are @file{Foo} and
798 @file{bar}, the new names are @file{foo} and @file{bar}.
799
800 @item % R @var{from} @key{RET} @var{to} @key{RET}
801 @kindex % R @r{(Dired)}
802 @findex dired-do-rename-regexp
803 @itemx % C @var{from} @key{RET} @var{to} @key{RET}
804 @kindex % C @r{(Dired)}
805 @findex dired-do-copy-regexp
806 @itemx % H @var{from} @key{RET} @var{to} @key{RET}
807 @kindex % H @r{(Dired)}
808 @findex dired-do-hardlink-regexp
809 @itemx % S @var{from} @key{RET} @var{to} @key{RET}
810 @kindex % S @r{(Dired)}
811 @findex dired-do-symlink-regexp
812 These four commands rename, copy, make hard links and make soft links,
813 in each case computing the new name by regular-expression substitution
814 from the name of the old file.
815 @end table
816
817 The four regular-expression substitution commands effectively
818 perform a search-and-replace on the selected file names. They read
819 two arguments: a regular expression @var{from}, and a substitution
820 pattern @var{to}; they match each ``old'' file name against
821 @var{from}, and then replace the matching part with @var{to}. You can
822 use @samp{\&} and @samp{\@var{digit}} in @var{to} to refer to all or
823 part of what the pattern matched in the old file name, as in
824 @code{replace-regexp} (@pxref{Regexp Replace}). If the regular
825 expression matches more than once in a file name, only the first match
826 is replaced.
827
828 For example, @kbd{% R ^.*$ @key{RET} x-\& @key{RET}} renames each
829 selected file by prepending @samp{x-} to its name. The inverse of this,
830 removing @samp{x-} from the front of each file name, is also possible:
831 one method is @kbd{% R ^x-\(.*\)$ @key{RET} \1 @key{RET}}; another is
832 @kbd{% R ^x- @key{RET} @key{RET}}. (Use @samp{^} and @samp{$} to anchor
833 matches that should span the whole file name.)
834
835 Normally, the replacement process does not consider the files'
836 directory names; it operates on the file name within the directory. If
837 you specify a numeric argument of zero, then replacement affects the
838 entire absolute file name including directory name. (A non-zero
839 argument specifies the number of files to operate on.)
840
841 You may want to select the set of files to operate on using the same
842 regexp @var{from} that you will use to operate on them. To do this,
843 mark those files with @kbd{% m @var{from} @key{RET}}, then use the
844 same regular expression in the command to operate on the files. To
845 make this more convenient, the @kbd{%} commands to operate on files
846 use the last regular expression specified in any @kbd{%} command as a
847 default.
848
849 @node Comparison in Dired
850 @section File Comparison with Dired
851 @cindex file comparison (in Dired)
852 @cindex compare files (in Dired)
853
854 Here are two Dired commands that compare specified files using
855 @code{diff}. They show the output in a buffer using Diff mode
856 (@pxref{Comparing Files}).
857
858 @table @kbd
859 @item =
860 @findex dired-diff
861 @kindex = @r{(Dired)}
862 Compare the current file (the file at point) with another file (the
863 file at the mark) using the @code{diff} program (@code{dired-diff}).
864 The file at the mark is the first argument of @code{diff}, and the
865 file at point is the second argument. This refers to the ordinary
866 Emacs mark, not Dired marks; use @kbd{C-@key{SPC}}
867 (@code{set-mark-command}) to set the mark at the first file's line
868 (@pxref{Setting Mark}).
869
870 @findex dired-backup-diff
871 @kindex M-= @r{(Dired)}
872 @item M-=
873 Compare the current file with its latest backup file
874 (@code{dired-backup-diff}). If the current file is itself a backup,
875 compare it with the file it is a backup of; this way, you can compare
876 a file with any one of its backups.
877
878 The backup file is the first file given to @code{diff}.
879 @end table
880
881 @node Subdirectories in Dired
882 @section Subdirectories in Dired
883 @cindex subdirectories in Dired
884 @cindex expanding subdirectories in Dired
885
886 A Dired buffer displays just one directory in the normal case;
887 but you can optionally include its subdirectories as well.
888
889 The simplest way to include multiple directories in one Dired buffer is
890 to specify the options @samp{-lR} for running @code{ls}. (If you give a
891 numeric argument when you run Dired, then you can specify these options
892 in the minibuffer.) That produces a recursive directory listing showing
893 all subdirectories at all levels.
894
895 More often, you will want to show only specific subdirectories. You
896 can do this with the @kbd{i} command:
897
898 @table @kbd
899 @findex dired-maybe-insert-subdir
900 @kindex i @r{(Dired)}
901 @item i
902 @cindex inserted subdirectory (Dired)
903 @cindex in-situ subdirectory (Dired)
904 Insert the contents of a subdirectory later in the buffer.
905 @end table
906
907 Use the @kbd{i} (@code{dired-maybe-insert-subdir}) command on a line
908 that describes a file which is a directory. It inserts the contents of
909 that directory into the same Dired buffer, and moves there. Inserted
910 subdirectory contents follow the top-level directory of the Dired
911 buffer, just as they do in @samp{ls -lR} output.
912
913 If the subdirectory's contents are already present in the buffer, the
914 @kbd{i} command just moves to it.
915
916 In either case, @kbd{i} sets the Emacs mark before moving, so @kbd{C-u
917 C-@key{SPC}} takes you back to the old position in the buffer (the line
918 describing that subdirectory).
919
920 Use the @kbd{l} command (@code{dired-do-redisplay}) to update the
921 subdirectory's contents. Use @kbd{C-u k} on the subdirectory header
922 line to delete the subdirectory. @xref{Dired Updating}. You can also
923 hide and show inserted subdirectories @xref{Hiding Subdirectories}.
924
925
926
927
928 @ifnottex
929 @include dired-xtra.texi
930 @end ifnottex
931
932 @node Subdirectory Motion
933 @section Moving Over Subdirectories
934
935 When a Dired buffer lists subdirectories, you can use the page motion
936 commands @kbd{C-x [} and @kbd{C-x ]} to move by entire directories
937 (@pxref{Pages}).
938
939 @cindex header line (Dired)
940 @cindex directory header lines
941 The following commands move across, up and down in the tree of
942 directories within one Dired buffer. They move to @dfn{directory header
943 lines}, which are the lines that give a directory's name, at the
944 beginning of the directory's contents.
945
946 @table @kbd
947 @findex dired-next-subdir
948 @kindex C-M-n @r{(Dired)}
949 @item C-M-n
950 Go to next subdirectory header line, regardless of level
951 (@code{dired-next-subdir}).
952
953 @findex dired-prev-subdir
954 @kindex C-M-p @r{(Dired)}
955 @item C-M-p
956 Go to previous subdirectory header line, regardless of level
957 (@code{dired-prev-subdir}).
958
959 @findex dired-tree-up
960 @kindex C-M-u @r{(Dired)}
961 @item C-M-u
962 Go up to the parent directory's header line (@code{dired-tree-up}).
963
964 @findex dired-tree-down
965 @kindex C-M-d @r{(Dired)}
966 @item C-M-d
967 Go down in the directory tree, to the first subdirectory's header line
968 (@code{dired-tree-down}).
969
970 @findex dired-prev-dirline
971 @kindex < @r{(Dired)}
972 @item <
973 Move up to the previous directory-file line (@code{dired-prev-dirline}).
974 These lines are the ones that describe a directory as a file in its
975 parent directory.
976
977 @findex dired-next-dirline
978 @kindex > @r{(Dired)}
979 @item >
980 Move down to the next directory-file line (@code{dired-prev-dirline}).
981 @end table
982
983 @node Hiding Subdirectories
984 @section Hiding Subdirectories
985 @cindex hiding subdirectories (Dired)
986 @cindex showing hidden subdirectories (Dired)
987
988 @dfn{Hiding} a subdirectory means to make it invisible, except for its
989 header line.
990
991 @table @kbd
992 @item $
993 @findex dired-hide-subdir
994 @kindex $ @r{(Dired)}
995 Hide or show the subdirectory that point is in, and move point to the
996 next subdirectory (@code{dired-hide-subdir}). This is a toggle. A
997 numeric argument serves as a repeat count.
998
999 @item M-$
1000 @findex dired-hide-all
1001 @kindex M-$ @r{(Dired)}
1002 Hide all subdirectories in this Dired buffer, leaving only their header
1003 lines (@code{dired-hide-all}). Or, if any subdirectory is currently
1004 hidden, make all subdirectories visible again. You can use this command
1005 to get an overview in very deep directory trees or to move quickly to
1006 subdirectories far away.
1007 @end table
1008
1009 Ordinary Dired commands never consider files inside a hidden
1010 subdirectory. For example, the commands to operate on marked files
1011 ignore files in hidden directories even if they are marked. Thus you
1012 can use hiding to temporarily exclude subdirectories from operations
1013 without having to remove the Dired marks on files in those
1014 subdirectories.
1015
1016 @xref{Dired Updating} about inserting or deleting a subdirectory
1017 listing.
1018
1019 @node Dired Updating
1020 @section Updating the Dired Buffer
1021 @cindex updating Dired buffer
1022 @cindex refreshing displayed files
1023
1024 This section describes commands to update the Dired buffer to reflect
1025 outside (non-Dired) changes in the directories and files, and to delete
1026 part of the Dired buffer.
1027
1028 @table @kbd
1029 @item g
1030 Update the entire contents of the Dired buffer (@code{revert-buffer}).
1031
1032 @item l
1033 Update the specified files (@code{dired-do-redisplay}). You specify the
1034 files for @kbd{l} in the same way as for file operations.
1035
1036 @item k
1037 Delete the specified @emph{file lines}---not the files, just the lines
1038 (@code{dired-do-kill-lines}).
1039
1040 @item s
1041 Toggle between alphabetical order and date/time order
1042 (@code{dired-sort-toggle-or-edit}).
1043
1044 @item C-u s @var{switches} @key{RET}
1045 Refresh the Dired buffer using @var{switches} as
1046 @code{dired-listing-switches}.
1047 @end table
1048
1049 @kindex g @r{(Dired)}
1050 @findex revert-buffer @r{(Dired)}
1051 Type @kbd{g} (@code{revert-buffer}) to update the contents of the
1052 Dired buffer, based on changes in the files and directories listed.
1053 This preserves all marks except for those on files that have vanished.
1054 Hidden subdirectories are updated but remain hidden.
1055
1056 @kindex l @r{(Dired)}
1057 @findex dired-do-redisplay
1058 To update only some of the files, type @kbd{l}
1059 (@code{dired-do-redisplay}). Like the Dired file-operating commands,
1060 this command operates on the next @var{n} files (or previous
1061 @minus{}@var{n} files), or on the marked files if any, or on the
1062 current file. Updating the files means reading their current status,
1063 then updating their lines in the buffer to indicate that status.
1064
1065 If you use @kbd{l} on a subdirectory header line, it updates the
1066 contents of the corresponding subdirectory.
1067
1068 @kindex k @r{(Dired)}
1069 @findex dired-do-kill-lines
1070 To delete the specified @emph{file lines} from the buffer---not
1071 delete the files---type @kbd{k} (@code{dired-do-kill-lines}). Like
1072 the file-operating commands, this command operates on the next @var{n}
1073 files, or on the marked files if any; but it does not operate on the
1074 current file as a last resort.
1075
1076 If you use @kbd{k} with a numeric prefix argument to kill the line
1077 for a file that is a directory, which you have inserted in the Dired
1078 buffer as a subdirectory, it deletes that subdirectory from the buffer
1079 as well. Typing @kbd{C-u k} on the header line for a subdirectory
1080 also deletes the subdirectory from the Dired buffer.
1081
1082 The @kbd{g} command brings back any individual lines that you have
1083 killed in this way, but not subdirectories---you must use @kbd{i} to
1084 reinsert a subdirectory.
1085
1086 @cindex Dired sorting
1087 @cindex sorting Dired buffer
1088 @kindex s @r{(Dired)}
1089 @findex dired-sort-toggle-or-edit
1090 The files in a Dired buffers are normally listed in alphabetical order
1091 by file names. Alternatively Dired can sort them by date/time. The
1092 Dired command @kbd{s} (@code{dired-sort-toggle-or-edit}) switches
1093 between these two sorting modes. The mode line in a Dired buffer
1094 indicates which way it is currently sorted---by name, or by date.
1095
1096 @kbd{C-u s @var{switches} @key{RET}} lets you specify a new value for
1097 @code{dired-listing-switches}.
1098
1099 @node Dired and Find
1100 @section Dired and @code{find}
1101 @cindex @code{find} and Dired
1102
1103 You can select a set of files for display in a Dired buffer more
1104 flexibly by using the @code{find} utility to choose the files.
1105
1106 @findex find-name-dired
1107 To search for files with names matching a wildcard pattern use
1108 @kbd{M-x find-name-dired}. It reads arguments @var{directory} and
1109 @var{pattern}, and chooses all the files in @var{directory} or its
1110 subdirectories whose individual names match @var{pattern}.
1111
1112 The files thus chosen are displayed in a Dired buffer, in which the
1113 ordinary Dired commands are available.
1114
1115 @findex find-grep-dired
1116 If you want to test the contents of files, rather than their names,
1117 use @kbd{M-x find-grep-dired}. This command reads two minibuffer
1118 arguments, @var{directory} and @var{regexp}; it chooses all the files in
1119 @var{directory} or its subdirectories that contain a match for
1120 @var{regexp}. It works by running the programs @code{find} and
1121 @code{grep}. See also @kbd{M-x grep-find}, in @ref{Grep Searching}.
1122 Remember to write the regular expression for @code{grep}, not for Emacs.
1123 (An alternative method of showing files whose contents match a given
1124 regexp is the @kbd{% g @var{regexp}} command, see @ref{Marks vs Flags}.)
1125
1126 @findex find-dired
1127 The most general command in this series is @kbd{M-x find-dired}, which
1128 lets you specify any condition that @code{find} can test. It takes two
1129 minibuffer arguments, @var{directory} and @var{find-args}; it runs
1130 @code{find} in @var{directory}, passing @var{find-args} to tell
1131 @code{find} what condition to test. To use this command, you need to
1132 know how to use @code{find}.
1133
1134 @vindex find-ls-option
1135 The format of listing produced by these commands is controlled by the
1136 variable @code{find-ls-option}, whose default value specifies using
1137 options @samp{-ld} for @code{ls}. If your listings are corrupted, you
1138 may need to change the value of this variable.
1139
1140 @findex locate
1141 @findex locate-with-filter
1142 @cindex file database (locate)
1143 @vindex locate-command
1144 The command @kbd{M-x locate} provides a similar interface to the
1145 @code{locate} program. @kbd{M-x locate-with-filter} is similar, but
1146 keeps only files whose names match a given regular expression.
1147
1148 These buffers don't work entirely like ordinary Dired buffers: file
1149 operations work, but do not always automatically update the buffer.
1150 Reverting the buffer with @kbd{g} deletes all inserted subdirectories,
1151 and erases all flags and marks.
1152
1153 @node Wdired
1154 @section Editing the Dired Buffer
1155
1156 @cindex wdired mode
1157 @findex wdired-change-to-wdired-mode
1158 Wdired is a special mode that allows you to perform file operations
1159 by editing the Dired buffer directly (the ``W'' in ``Wdired'' stands
1160 for ``writable.'') To enter Wdired mode, type @kbd{C-x C-q} or @kbd{M-x
1161 wdired-change-to-wdired-mode} while in a Dired buffer. Alternatively,
1162 use @samp{Edit File Names} in the @samp{Immediate} menu bar menu.
1163
1164 @findex wdired-finish-edit
1165 While in Wdired mode, you can rename files by editing the file names
1166 displayed in the Dired buffer. All the ordinary Emacs editing
1167 commands, including rectangle operations and @code{query-replace}, are
1168 available for this. Once you are done editing, type @kbd{C-c C-c}
1169 (@code{wdired-finish-edit}). This applies your changes and switches
1170 back to ordinary Dired mode.
1171
1172 Apart from simply renaming files, you can move a file to another
1173 directory by typing in the new file name (either absolute or
1174 relative). To mark a file for deletion, delete the entire file name.
1175 To change the target of a symbolic link, edit the link target name
1176 which appears next to the link name.
1177
1178 The rest of the text in the buffer, such as the file sizes and
1179 modification dates, is marked read-only, so you can't edit it.
1180 However, if you set @code{wdired-allow-to-change-permissions} to
1181 @code{t}, you can edit the file permissions. For example, you can
1182 change @samp{-rw-r--r--} to @samp{-rw-rw-rw-} to make a file
1183 world-writable. These changes also take effect when you type @kbd{C-c
1184 C-c}.
1185
1186 @node Image-Dired
1187 @section Viewing Image Thumbnails in Dired
1188 @cindex image-dired mode
1189 @cindex image-dired
1190
1191 Image-Dired is a facility for browsing image files. It provides viewing
1192 the images either as thumbnails or in full size, either inside Emacs
1193 or through an external viewer.
1194
1195 @kindex C-t d @r{(Image-Dired)}
1196 @findex image-dired-display-thumbs
1197 To enter Image-Dired, mark the image files you want to look at in
1198 the Dired buffer, using @kbd{m} as usual. Then type @kbd{C-t d}
1199 (@code{image-dired-display-thumbs}). This creates and switches to a
1200 buffer containing image-dired, corresponding to the marked files.
1201
1202 You can also enter Image-Dired directly by typing @kbd{M-x
1203 image-dired}. This prompts for a directory; specify one that has
1204 image files. This creates thumbnails for all the images in that
1205 directory, and displays them all in the ``thumbnail buffer.'' This
1206 takes a long time if the directory contains many image files, and it
1207 asks for confirmation if the number of image files exceeds
1208 @code{image-dired-show-all-from-dir-max-files}.
1209
1210 With point in the thumbnail buffer, you can type @kbd{RET}
1211 (@code{image-dired-display-thumbnail-original-image}) to display a
1212 sized version of it in another window. This sizes the image to fit
1213 the window. Use the arrow keys to move around in the buffer. For
1214 easy browsing, use @kbd{SPC}
1215 (@code{image-dired-display-next-thumbnail-original}) to advance and
1216 display the next image. Typing @kbd{DEL}
1217 (@code{image-dired-display-previous-thumbnail-original}) backs up to
1218 the previous thumbnail and displays that instead.
1219
1220 @vindex image-dired-external-viewer
1221 To view and the image in its original size, either provide a prefix
1222 argument (@kbd{C-u}) before pressing @kbd{RET}, or type
1223 @kbd{C-@key{RET}} (@code{image-dired-thumbnail-display-external}) to
1224 display the image in an external viewer. You must first configure
1225 @code{image-dired-external-viewer}.
1226
1227 You can delete images through Image-Dired also. Type @kbd{d}
1228 (@code{image-dired-flag-thumb-original-file}) to flag the image file
1229 for deletion in the Dired buffer. You can also delete the thumbnail
1230 image from the thumbnail buffer with @kbd{C-d}
1231 (@code{image-dired-delete-char}).
1232
1233 More advanced features include @dfn{image tags}, which are metadata
1234 used to categorize image files. The tags are stored in a plain text
1235 file configured by @code{image-dired-db-file}.
1236
1237 To tag image files, mark them in the dired buffer (you can also mark
1238 files in Dired from the thumbnail buffer by typing @kbd{m}) and type
1239 @kbd{C-t t} (@code{image-dired-tag-files}). You will be prompted for
1240 a tag. To mark files having a certain tag, type @kbd{C-t f}
1241 (@code{image-dired-mark-tagged-files}). After marking image files
1242 with a certain tag, you can use @kbd{C-t d} to view them.
1243
1244 You can also tag a file directly from the thumbnail buffer by typing
1245 @kbd{t t} and you can remove a tag by typing @kbd{t r}. There is also
1246 a special ``tag'' called ``comment'' for each file (it is not a tag in
1247 the exact same sense as the other tags, it is handled slightly
1248 different). That is used to enter a comment or description about the
1249 image. You comment a file from the thumbnail buffer by typing
1250 @kbd{c}. You will be prompted for a comment. Type @kbd{C-t c} to add
1251 a comment from Dired (@code{image-dired-dired-comment-files}).
1252
1253 Image-Dired also provides simple image manipulation. In the
1254 thumbnail buffer, type @kbd{L} to rotate the original image 90 degrees
1255 anti clockwise, and @kbd{R} to rotate it 90 degrees clockwise. This
1256 rotation is lossless, and uses an external utility called JpegTRAN.
1257
1258 @node Misc Dired Features
1259 @section Other Dired Features
1260
1261 @kindex + @r{(Dired)}
1262 @findex dired-create-directory
1263 An unusual Dired file-operation command is @kbd{+}
1264 (@code{dired-create-directory}). This command reads a directory name,
1265 and creates the directory if it does not already exist.
1266
1267 @cindex Adding to the kill ring in Dired.
1268 @kindex w @r{(Dired)}
1269 @findex dired-copy-filename-as-kill
1270 The @kbd{w} command (@code{dired-copy-filename-as-kill}) puts the
1271 names of the marked (or next @var{n}) files into the kill ring, as if
1272 you had killed them with @kbd{C-w}. The names are separated by a space.
1273
1274 With a zero prefix argument, this uses the absolute file name of
1275 each marked file. With just @kbd{C-u} as the prefix argument, it uses
1276 file names relative to the Dired buffer's default directory. (This
1277 can still contain slashes if in a subdirectory.) As a special case,
1278 if point is on a directory headerline, @kbd{w} gives you the absolute
1279 name of that directory. Any prefix argument or marked files are
1280 ignored in this case.
1281
1282 The main purpose of this command is so that you can yank the file
1283 names into arguments for other Emacs commands. It also displays what
1284 it added to the kill ring, so you can use it to display the list of
1285 currently marked files in the echo area.
1286
1287 @findex dired-compare-directories
1288 The command @kbd{M-x dired-compare-directories} is used to compare
1289 the current Dired buffer with another directory. It marks all the files
1290 that are ``different'' between the two directories. It puts these marks
1291 in all Dired buffers where these files are listed, which of course includes
1292 the current buffer.
1293
1294 The default comparison method (used if you type @key{RET} at the
1295 prompt) is to compare just the file names---each file name that does
1296 not appear in the other directory is ``different.'' You can specify
1297 more stringent comparisons by entering a Lisp expression, which can
1298 refer to the variables @code{size1} and @code{size2}, the respective
1299 file sizes; @code{mtime1} and @code{mtime2}, the last modification
1300 times in seconds, as floating point numbers; and @code{fa1} and
1301 @code{fa2}, the respective file attribute lists (as returned by the
1302 function @code{file-attributes}). This expression is evaluated for
1303 each pair of like-named files, and if the expression's value is
1304 non-@code{nil}, those files are considered ``different.''
1305
1306 For instance, the sequence @code{M-x dired-compare-directories
1307 @key{RET} (> mtime1 mtime2) @key{RET}} marks files newer in this
1308 directory than in the other, and marks files older in the other
1309 directory than in this one. It also marks files with no counterpart,
1310 in both directories, as always.
1311
1312 @cindex drag and drop, Dired
1313 On the X window system, Emacs supports the ``drag and drop''
1314 protocol. You can drag a file object from another program, and drop
1315 it onto a Dired buffer; this either moves, copies, or creates a link
1316 to the file in that directory. Precisely which action is taken is
1317 determined by the originating program. Dragging files out of a Dired
1318 buffer is currently not supported.
1319
1320 @ignore
1321 arch-tag: d105f9b9-fc1b-4c5f-a949-9b2cf3ca2fc1
1322 @end ignore