Você pode usar rm -- -t
ou rm ./-t
De man rm
To remove a file whose name starts with a '-', for example '-foo',
use one of these commands:
rm -- -foo
rm ./-foo
Saída de "ls -l":
-rw-r--r-- 1 root root 0 Mar 4 08:22 -t
Quando tento fazer "rm '-t'":
rm: invalid option -- 't'
Try 'rm ./-t' to remove the file '-t'.
Try 'rm --help' for more information.
Você pode usar rm -- -t
ou rm ./-t
De man rm
To remove a file whose name starts with a '-', for example '-foo',
use one of these commands:
rm -- -foo
rm ./-foo
Você também pode usar find
:
find . -maxdepth 1 -type f -name '-t' -delete
Exemplo:
% ls
egg -t
% find . -maxdepth 1 -type f -name '-t' -delete
% ls
egg
Tags command-line filesystem rm