Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要删除一个包含多个子目录和文件的目录。在谷歌搜索并查看 and 的手册页后rmdir,rm我有以下两种选择:
rmdir
rm
$ rm -rf <folder_name>和$ \rm -rf <folder_name>
$ rm -rf <folder_name>
$ \rm -rf <folder_name>
这两者有何不同?
使用\意味着您希望您的 shell忽略基于此命令的任何别名
假设您有一个像这样的别名:
alias rm='rm -i'
如果你想 rm 你的整个/,你会非常想忽略它。
祝你好运