home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 264_01 / rm.doc < prev    next >
Text File  |  1979-12-31  |  1KB  |  28 lines

  1. RM
  2.  
  3. Purpose
  4. remove files and directories
  5.  
  6. Syntax
  7. rm [-fiv] [-] file...
  8. rm [-fiv] -r [-] file|dir...
  9.  
  10. Comments
  11. Rm allows multiple files, and even whole directories, to be removed
  12. selectively.
  13.  
  14. Options
  15. -       interpret all following arguments as filenames (used to remove
  16.         files with names that start with a '-').
  17. -f      force; don't quit if errors are encountered in removing files,
  18.     override any readonly attributes, and don't display any error
  19.     messages.
  20. -i      interactive; asks whether to remove each file or directory.
  21. -r      recursively remove arguments which are directories; if not
  22.         specified, arguments which are directories are not removed.
  23.         Note that if you specify both -i and -r, and choose not to
  24.         delete a file which is in a subdirectory, the subdirectory
  25.         itself cannot be removed.
  26. -v    verbose; display the name of each file or directory before
  27.     removing it.
  28.