home *** CD-ROM | disk | FTP | other *** search
/ Phoenix CD 2.0 / Phoenix_CD.cdr / 11a / copymove.zip / CP.TXT < prev    next >
Text File  |  1986-08-19  |  1KB  |  41 lines

  1.                                                 CP.EXE, MV.EXE
  2.  
  3.                                                 Class: Unix
  4.  
  5. Copy or move files
  6.  
  7. NAME
  8.     CP                          Copy files
  9.     MV                          Move files
  10.  
  11. SYNOPSIS
  12.     cp [-cdeirtv] <file/dir> <file/dir>
  13.     mv [-cdeirtv] <file/dir> <file/dir>
  14.  
  15. DESCRIPTION
  16.     CP copies files from one path/disk to another. The copy may be performed
  17.     recursively, checked before doing and verified after to ensure proper
  18.     copying. MV performs the same functions only the source file is deleted
  19.     after the copy.
  20.  
  21. FLAGS
  22.     -c      check (verify) after move/copy
  23.     -d      copy directories given
  24.     -e      if destination exist, prompt for overwrite permission
  25.     -i      inquire before move/copy
  26.     -r      recursive move/copy
  27.     -t      copy: copy time and date default is not to ie create new file
  28.             move: do not move time and date. default is to
  29.     -v      verbose
  30.  
  31. NOTES
  32.     Use the recursive mode to copy or move entire directories of disks
  33.     including all sub-directories. Will automatically create sub-directories
  34.     as needed.
  35.     Default optionsmay be set using the environment variables CP and MV.
  36.     SET CP=vt will set the default to verbose and copy time. To override
  37.     these options state the flag in the command line.
  38.     cp -v       will turn off the verbose mode if set in the environments.
  39.  
  40.  
  41.