Show
Ignore:
Timestamp:
2006年08月10日 11時19分54秒 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/man/dired.texi

    r4131 r4140  
    326326file with some other character (usually @samp{*}).  Most Dired 
    327327commands to operate on files use the files marked with @samp{*}.  The 
    328 only command that operates on flagged flies is @kbd{x}, which expunges 
     328only command that operates on flagged files is @kbd{x}, which expunges 
    329329them. 
    330330 
     
    551551Copy the specified files (@code{dired-do-copy}).  The argument @var{new} 
    552552is the directory to copy into, or (if copying a single file) the new 
    553 name. 
     553name.  This is like the shell command @code{cp}. 
    554554 
    555555@vindex dired-copy-preserve-time 
    556556If @code{dired-copy-preserve-time} is non-@code{nil}, then copying 
    557557with this command preserves the modification time of the old file in 
    558 the copy
     558the copy, like @samp{cp -p}
    559559 
    560560@vindex dired-recursive-copies 
    561561@cindex recursive copying 
    562562The variable @code{dired-recursive-copies} controls whether to copy 
    563 directories recursively.  The default is @code{nil}, which means that 
    564 directories cannot be copied. 
     563directories recursively (like @samp{cp -r}).  The default is 
     564@code{nil}, which means that directories cannot be copied. 
    565565 
    566566@item D 
    567567@findex dired-do-delete 
    568568@kindex D @r{(Dired)} 
    569 Delete the specified files (@code{dired-do-delete}).  Like the other 
    570 commands in this section, this command operates on the @emph{marked} 
    571 files, or the next @var{n} files.  By contrast, @kbd{x} 
     569Delete the specified files (@code{dired-do-delete}).  This is like the 
     570shell command @code{rm}. 
     571 
     572Like the other commands in this section, this command operates on the 
     573@emph{marked} files, or the next @var{n} files.  By contrast, @kbd{x} 
    572574(@code{dired-do-flagged-delete}) deletes all @dfn{flagged} files. 
    573575 
     
    575577@kindex R @r{(Dired)} 
    576578@cindex renaming files (in Dired) 
     579@cindex moving files (in Dired) 
    577580@item R @var{new} @key{RET} 
    578 Rename the specified files (@code{dired-do-rename}).  The argument 
    579 @var{new} is the directory to rename into, or (if renaming a single 
    580 file) the new name. 
     581Rename the specified files (@code{dired-do-rename}).  If you rename a 
     582single file, the argument @var{new} is the new name of the file.  If 
     583you rename several files, the argument @var{new} is the directory into 
     584which to move the files (this is like the shell command @code{mv}). 
    581585 
    582586Dired automatically changes the visited file name of buffers associated 
     
    587591@cindex hard links (in Dired) 
    588592@item H @var{new} @key{RET} 
    589 Make hard links to the specified files (@code{dired-do-hardlink}).  The 
    590 argument @var{new} is the directory to make the links in, or (if making 
    591 just one link) the name to give the link. 
     593Make hard links to the specified files (@code{dired-do-hardlink}). 
     594This is like the shell command @code{ln}.  The argument @var{new} is 
     595the directory to make the links in, or (if making just one link) the 
     596name to give the link. 
    592597 
    593598@findex dired-do-symlink 
     
    596601@item S @var{new} @key{RET} 
    597602Make symbolic links to the specified files (@code{dired-do-symlink}). 
    598 The argument @var{new} is the directory to make the links in, or (if 
    599 making just one link) the name to give the link. 
     603This is like @samp{ln -s}.  The argument @var{new} is the directory to 
     604make the links in, or (if making just one link) the name to give the 
     605link. 
    600606 
    601607@findex dired-do-chmod 
     
    632638@item T @var{timestamp} @key{RET} 
    633639Touch the specified files (@code{dired-do-touch}).  This means 
    634 updating their modification times to the present time. 
     640updating their modification times to the present time.  This is like 
     641the shell command @code{touch}. 
    635642 
    636643@findex dired-do-print