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.
如何使用rm删除名为“--help”的文件?当我尝试时,它只显示帮助提示。
rm
我最终打开文件浏览器将其删除。
两种方法:
rm ./--help rm -- --help
后一种方法受到许多常见 UNIX 工具的支持(--按惯例表示“选项的结尾”,即其他所有内容都将是位置参数),并且在脚本中特别方便,当您不知道自己的数据时会处理。
--
该rm命令将接受“--”来告诉它不再处理任何选项。
rm -- '--help'