Changeset 4140 for trunk/man/dired.texi
- Timestamp:
- 2006年08月10日 11時19分54秒 (2 years ago)
- Files:
-
- trunk/man/dired.texi (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/man/dired.texi
r4131 r4140 326 326 file with some other character (usually @samp{*}). Most Dired 327 327 commands to operate on files use the files marked with @samp{*}. The 328 only command that operates on flagged f lies is @kbd{x}, which expunges328 only command that operates on flagged files is @kbd{x}, which expunges 329 329 them. 330 330 … … 551 551 Copy the specified files (@code{dired-do-copy}). The argument @var{new} 552 552 is the directory to copy into, or (if copying a single file) the new 553 name. 553 name. This is like the shell command @code{cp}. 554 554 555 555 @vindex dired-copy-preserve-time 556 556 If @code{dired-copy-preserve-time} is non-@code{nil}, then copying 557 557 with this command preserves the modification time of the old file in 558 the copy .558 the copy, like @samp{cp -p}. 559 559 560 560 @vindex dired-recursive-copies 561 561 @cindex recursive copying 562 562 The variable @code{dired-recursive-copies} controls whether to copy 563 directories recursively . The default is @code{nil}, which means that564 directories cannot be copied.563 directories recursively (like @samp{cp -r}). The default is 564 @code{nil}, which means that directories cannot be copied. 565 565 566 566 @item D 567 567 @findex dired-do-delete 568 568 @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} 569 Delete the specified files (@code{dired-do-delete}). This is like the 570 shell command @code{rm}. 571 572 Like 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} 572 574 (@code{dired-do-flagged-delete}) deletes all @dfn{flagged} files. 573 575 … … 575 577 @kindex R @r{(Dired)} 576 578 @cindex renaming files (in Dired) 579 @cindex moving files (in Dired) 577 580 @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. 581 Rename the specified files (@code{dired-do-rename}). If you rename a 582 single file, the argument @var{new} is the new name of the file. If 583 you rename several files, the argument @var{new} is the directory into 584 which to move the files (this is like the shell command @code{mv}). 581 585 582 586 Dired automatically changes the visited file name of buffers associated … … 587 591 @cindex hard links (in Dired) 588 592 @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. 593 Make hard links to the specified files (@code{dired-do-hardlink}). 594 This is like the shell command @code{ln}. The argument @var{new} is 595 the directory to make the links in, or (if making just one link) the 596 name to give the link. 592 597 593 598 @findex dired-do-symlink … … 596 601 @item S @var{new} @key{RET} 597 602 Make 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. 603 This is like @samp{ln -s}. The argument @var{new} is the directory to 604 make the links in, or (if making just one link) the name to give the 605 link. 600 606 601 607 @findex dired-do-chmod … … 632 638 @item T @var{timestamp} @key{RET} 633 639 Touch the specified files (@code{dired-do-touch}). This means 634 updating their modification times to the present time. 640 updating their modification times to the present time. This is like 641 the shell command @code{touch}. 635 642 636 643 @findex dired-do-print
