linux删除命令rm

  • linux,ubuntu,命令,rm,
  • 2014-08-01 12:54:00
下面是在 ubuntu 10.04 上 rm 命令的帮助文档。-f 表示强制删除,-i 和 -I 表示提示,一般不会用吧。-r表示递归,在删除目录的时候有用。



Usage: rm [OPTION]... FILE...
Remove (unlink) the FILE(s).


-f, --force ignore nonexistent files, never prompt
-i prompt before every removal
-I prompt once before removing more than three files, or
when removing recursively. Less intrusive than -i,
while still giving protection against most mistakes
--interactive[=WHEN] prompt according to WHEN: never, once (-I), or
always (-i). Without WHEN, prompt always
--one-file-system when removing a hierarchy recursively, skip any
directory that is on a file system different from
that of the corresponding command line argument
--no-preserve-root do not treat /' specially</span><br style="font-family: 宋体, 'sans serif', tahoma, verdana, helvetica; font-size: 16px; line-height: 24px;"><span style="font-family: 宋体, 'sans serif', tahoma, verdana, helvetica; font-size: 16px; line-height: 24px;"> --preserve-root do not remove/' (default)
-r, -R, --recursive remove directories and their contents recursively
-v, --verbose explain what is being done
--help display this help and exit
--version output version information and exit


By default, rm does not remove directories. Use the --recursive (-r or -R)
option to remove each listed directory, too, along with all of its contents.


To remove a file whose name starts with a -', for example-foo',
use one of these commands:
rm -- -foo


rm ./-foo


Note that if you use rm to remove a file, it might be possible to recover
some of its contents, given sufficient expertise and/or time. For greater
assurance that the contents are truly unrecoverable, consider using shred.


Report rm bugs to bug-coreutils@gnu.org
GNU coreutils home page: http://www.gnu.org/software/coreutils/
General help using GNU software: http://www.gnu.org/gethelp/
For complete documentation, run: info coreutils 'rm invocation'

相关文章

                                                                                                                                   <><>

- EOF -

本站文章除注明转载外,均为本站原创或编译。欢迎任何形式的转载,但请务必注明出处,尊重他人劳动。
转载请注明:文章转载自 Binkery 技术博客 [https://binkery.com]
本文标题: linux删除命令rm
本文地址: https://binkery.com/archives/241.html