rm.1

来自「Unix操作系统minix 2.0源码」· 1 代码 · 共 60 行

1
60
字号


RM(1)                     Minix Programmer's Manual                      RM(1)


NAME
     rm - remove a file

SYNOPSIS
     rm [-ifrRvx] name ...

OPTIONS

     -i   Interactive remove: ask before removing

     -f   Forced remove: no questions asked

     -rR  Remove directories and their contents

     -v   Tell what rm is removing

     -x   Do not cross device boundaries

EXAMPLES

     rm file             # Remove file

     rm -i *.c           # Remove .c files, asking about each

DESCRIPTION

     Rm removes one or more files.  If a file has no write permission, rm asks
     for  permission (type 'y' or 'n') unless -f is specified.  If the file is
     a directory, it will be recursively descended and removed if and only  if
     the -R flag is present.

SEE ALSO
     cp(1), mv(1), rmdir(1), unlink(2), rmdir(2).



















                                                                             1

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?