RM.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. RM(1)                     Minix Programmer's Manual                      RM(1)
  2. NAME
  3.      rm - remove a file
  4. SYNOPSIS
  5.      rm [-ifrRvx] name ...
  6. OPTIONS
  7.      -i   Interactive remove: ask before removing
  8.      -f   Forced remove: no questions asked
  9.      -rR  Remove directories and their contents
  10.      -v   Tell what rm is removing
  11.      -x   Do not cross device boundaries
  12. EXAMPLES
  13.      rm file             # Remove file
  14.      rm -i *.c           # Remove .c files, asking about each
  15. DESCRIPTION
  16.      Rm removes one or more files.  If a file has no write permission, rm asks
  17.      for  permission (type 'y' or 'n') unless -f is specified.  If the file is
  18.      a directory, it will be recursively descended and removed if and only  if
  19.      the -R flag is present.
  20. SEE ALSO
  21.      cp(1), mv(1), rmdir(1), unlink(2), rmdir(2).
  22.                                                                              1