rm删除(清除)一个或多个文件 -f 选项将强制删除文件,即使这个文件是只读的.并且可以用来避免用户输入(在非交互脚本中使用). 今天碰到这样一个情况…… rm将无法删除以破折号开头的文件. rm -slow_query_130103.txt.gz rm: invalid option -- s Try `rm ./-slow_query_130103.txt.gz' to remove the file `-slow_query_130103.txt.gz'. Try `rm --help' for more information. 官方在帮助文档中作了特别说明:
To remove a file whose name starts with a `-', for example `-foo', rm ./-foo
解决这个问题的一个方法就是在要删除的文件的前边加上"./" # rm ./-slow_query_130103.txt.gz rm: remove regular file `./-slow_query_130103.txt.gz'?
另一种解决的方法是 在文件名前边加上 " -- ". # rm -- -slow_query_130102.txt.gz rm: remove regular file `-slow_query_130102.txt.gz'? |