Linux的rm命令可以删除目录和文件。且删除不可恢复,所以,这个命令需要谨慎使用。
命令参数如下:
参数 | 长参数 | 描叙 |
---|---|---|
-f | --force | 强制删除,忽略不存在的文件,从不给出提示。 |
-i | --interactive | 交互模式删除文件,删除文件前给出提示。 |
-r | --recursive | 递归的删除目录下面文件以及子目录下文件。 |
-R | --recursive | 递归的删除目录下面文件以及子目录下文件。 |
-v | --verbose | 显示运行时详细信息 |
--help | 显示命令在线帮助 | |
--version | 显示命令版本信息 |
1:删除文件
默认使用rm会有询问是否删除文件
[root@iZuf60ynur81p6k0ysvtneZ opt]# rm linuxidc
rm: remove regular empty file ‘linuxidc’? y
[root@iZuf60ynur81p6k0ysvtneZ opt]# ll
total 20
drwxr-xr-x 3 root root 4096 Aug 27 10:51 a
drwx------ 2 root root 4096 Aug 27 10:49 auth
-rw-r--r-- 1 root root 0 Aug 27 09:22 ceshi1.txt
-rw-r--r-- 1 root root 0 Aug 27 09:22 ceshi2.txt
-rw-r--r-- 1 root root 0 Aug 27 09:22 ceshi3.txt
-rw-r--r-- 1 root root 0 Aug 27 09:22 ceshi.txt
drwxr-xr-x 2 root root 4096 Aug 27 10:47 first
drwxr-xr-x 2 root root 4096 Aug 27 10:48 second
drwxr-xr-x 2 root root 4096 Aug 27 10:48 third
2:强制删除文件
[root@iZuf60ynur81p6k0ysvtneZ opt]# rm -f ceshi.txt
[root@iZuf60ynur81p6k0ysvtneZ opt]# ll
total 20
drwxr-xr-x 3 root root 4096 Aug 27 10:51 a
drwx------ 2 root root 4096 Aug 27 10:49 auth
-rw-r--r-- 1 root root 0 Aug 27 09:22 ceshi1.txt
-rw-r--r-- 1 root root 0 Aug 27 09:22 ceshi2.txt
-rw-r--r-- 1 root root 0 Aug 27 09:22 ceshi3.txt
drwxr-xr-x 2 root root 4096 Aug 27 10:47 first
drwxr-xr-x 2 root root 4096 Aug 27 10:48 second
drwxr-xr-x 2 root root 4096 Aug 27 10:48 third
3:强制且递归删除目录
[root@iZuf60ynur81p6k0ysvtneZ opt]# rm -rf a
[root@iZuf60ynur81p6k0ysvtneZ opt]# ll
total 16
drwx------ 2 root root 4096 Aug 27 10:49 auth
-rw-r--r-- 1 root root 0 Aug 27 09:22 ceshi1.txt
-rw-r--r-- 1 root root 0 Aug 27 09:22 ceshi2.txt
-rw-r--r-- 1 root root 0 Aug 27 09:22 ceshi3.txt
drwxr-xr-x 2 root root 4096 Aug 27 10:47 first
drwxr-xr-x 2 root root 4096 Aug 27 10:48 second
drwxr-xr-x 2 root root 4096 Aug 27 10:48 third
4:显示删除细节
[root@iZuf60ynur81p6k0ysvtneZ opt]# rm -v ceshi1.txt
rm: remove regular empty file ‘ceshi1.txt’? y
removed ‘ceshi1.txt’
5:与通配符联合使用
使用方式基本与前边看过的ls是一样的。
删除所有后缀是txt的文件
[root@iZuf60ynur81p6k0ysvtneZ opt]# rm -rf *.txt
[root@iZuf60ynur81p6k0ysvtneZ opt]# ll
total 20
drwxr-xr-x 3 root root 4096 Aug 27 11:17 a
drwx------ 2 root root 4096 Aug 27 10:49 auth
drwxr-xr-x 2 root root 4096 Aug 27 10:47 first
drwxr-xr-x 2 root root 4096 Aug 27 10:48 second
drwxr-xr-x 2 root root 4096 Aug 27 10:48 third
使用rm的时候,只要不加-f参数,都是交互式删除。
最后,rm命令最经典的用法:
rm -rf /*
简单讲就是删除所有。这个命令一般我们自己是不会用的,但是还是谨防那些别有用心的人在你的代码中留下这个命令,然后在不知道的某天执行一下对应的方法。嗯……损失惨重。
当然,rm的组合用法还很多,这里就不一一说了。还是那句话,删除不可恢复,请谨慎删除。
有好的建议,请在下方输入你的评论。