]> git.eshelyaron.com Git - emacs.git/commitdiff
(Shell Commands in Dired): Delete the ? example.
authorRichard M. Stallman <rms@gnu.org>
Fri, 31 Dec 2004 15:11:01 +0000 (15:11 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 31 Dec 2004 15:11:01 +0000 (15:11 +0000)
man/dired.texi

index 1c5e29fe6967f55d9fd2b0fc3d3d5edd2bd5cfcc..464aa34c6c23793cfa95682b9c5cbcff5f2a81b0 100644 (file)
@@ -700,26 +700,18 @@ file.
 If the command string contains @samp{?} surrounded by whitespace, the
 current file name is substituted for @samp{?}.  You can use @samp{?}
 this way more than once in the command, and each occurrence is
-replaced.  For instance, here is how to uuencode each file, making the
-output file name by appending @samp{.uu} to the input file name:
-
-@example
-uuencode ? ? > ?.uu
-@end example
+replaced.
 @end itemize
 
 To iterate over the file names in a more complicated fashion, use an
-explicit shell loop.  For example, this shell command is another way
-to uuencode each file:
+explicit shell loop.  For example, here is how to uuencode each file,
+making the output file name by appending @samp{.uu} to the input file
+name:
 
 @example
 for file in * ; do uuencode "$file" "$file" >"$file".uu; done
 @end example
 
-@noindent
-This simple example doesn't require a shell loop (you can do it
-with @samp{?}, but it illustrates the technique.
-
 The working directory for the shell command is the top-level directory
 of the Dired buffer.