rm命令

Posted sambo510

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rm命令相关的知识,希望对你有一定的参考价值。

rm命令
======================================

rm命令可以删除一个目录中的一个或多个文件或目录,也可以将某个目录及其下属的所有文件及其子目录均删除掉。

注意:使用rm命令要格外小心。因为一旦删除了一个文件,就无法再恢复它。


[[email protected] ~]# which rm

alias rm=‘rm -i‘

/usr/bin/rm


语法
rm [options] name...

参数:
-r, -R, --recursive
remove directories and their contents recursively
(递归地删除目录及其内容)
-i
prompt before every removal
(在每次移除前提示)

-f, --force
ignore nonexistent files and arguments, never prompt
(忽略不存在的文件和参数,从不提示)

-v, --verbose
explain what is being done
(解释正在做什么)



示例:

[[email protected] sambo]# rm -v 1.txt
rm: remove symbolic link ‘1.txt‘? n
[[email protected] sambo]# ls
1.txt 3.txt dir1 dir2 dir3 passwd-soft
[[email protected] sambo]# rm -v 1.txt
rm: remove symbolic link ‘1.txt‘? y
removed ‘1.txt‘
[[email protected] sambo]# ls
3.txt dir1 dir2 dir3 passwd-soft

[[email protected] sambo]# rm -v dir1
rm: cannot remove ‘dir1‘: Is a directory
[[email protected] sambo]# rm -rv dir1
rm: remove directory ‘dir1‘? y
removed directory: ‘dir1‘
[[email protected] sambo]# ls
3.txt dir2 dir3 passwd-soft

[[email protected] sambo]# rm -rfv dir4
[[email protected] sambo]# rm -rfv dir1
removed ‘dir1/dir2/dir3/1.txt‘
removed ‘dir1/dir2/dir3/2.txt‘
removed ‘dir1/dir2/dir3/3.txt‘
removed directory: ‘dir1/dir2/dir3‘
removed directory: ‘dir1/dir2‘
removed directory: ‘dir1‘
















































以上是关于rm命令的主要内容,如果未能解决你的问题,请参考以下文章

Linux中的rm命令

linux常用命令rm命令

rm-rf命令删除多个文件

rm命令-每日Linux命令

2.9rm命令

rm 命令