rm -rf /storage/other/core/* 和rm -rf /storage/other/core*的区别
时间: 2024-04-27 10:18:11 浏览: 139
Linux下防止rm -rf /命令误删除
5星 · 资源好评率100%
rm -rf /storage/other/core/* 和 rm -rf /storage/other/core* 是两个不同的命令,它们的区别在于通配符的使用和匹配方式。
1. rm -rf /storage/other/core/*
这个命令使用了通配符 *,表示删除 /storage/other/core/ 目录下的所有文件和子目录,但不会删除 /storage/other/core 目录本身。也就是说,只删除了该目录下的内容,而不会删除该目录本身。
2. rm -rf /storage/other/core*
这个命令同样使用了通配符 *,但是它匹配的是以 /storage/other/core 开头的文件或目录。这意味着除了删除 /storage/other/core 目录下的内容外,还会删除以 /storage/other/core 开头的其他文件或目录。
所以,两个命令的区别在于第二个命令会删除更多的文件或目录,包括以 /storage/other/core 开头的其他文件或目录。
阅读全文