annotate man/dired.texi @ 80376:6e2a0297b94d

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