“ls -l”的输出:
-rw-r--r-- 1 root root 0 Mar 4 08:22 -t
当我尝试执行“rm '-t'”时:
rm: invalid option -- 't'
Try 'rm ./-t' to remove the file '-t'.
Try 'rm --help' for more information.
答案1
您可以使用rm -- -t
或rm ./-t
从man rm
To remove a file whose name starts with a '-', for example '-foo',
use one of these commands:
rm -- -foo
rm ./-foo
答案2
您find
也可以使用:
find . -maxdepth 1 -type f -name '-t' -delete
例子:
% ls
egg -t
% find . -maxdepth 1 -type f -name '-t' -delete
% ls
egg