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.
我在 Ubuntu 中有一个名为“-help.txt”的文件。我知道我应该使用这样的命令:
> rm ./-help.txt
谁能给我一个网址,让我可以系统地学习如何处理 Ubuntu 命令行中的特殊字符。非常感谢!
首先尝试手册页:
> man rm
毫无疑问,您正在使用 GNU rm,并且您会发现 GNU 程序使用 -- 将选项与参数分开,即使使用 ./ 有效。
> rm -- -help.txt
然后,尝试 GNU 信息系统:
> info rm > info fileutils