Eu tenho um arquivo chamado "-t". Como remover isso? [duplicado]

8

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.
    
por kacpi2442 22.03.2016 / 11:15

2 respostas

24

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
    
por Wayne_Yux 22.03.2016 / 11:19
6

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
    
por heemayl 22.03.2016 / 16:12