Linux: lista todas as correspondências no comando 'which'

0

'homem que' diz:

   --all, -a
       Print all matching executables in PATH, not just the first.

Mas quando faço isso, fico:

> which --all g++
--all: Command not found.
/usr/bin/g++
> which -a g++
-a: Command not found.
/usr/bin/g++

Tentei colocar --all ou -a depois de "g ++" também, sem sorte.

    
por shikhanshu 12.07.2016 / 01:05

1 resposta

0

Você está usando o tcsh shell, que tem uma versão integrada de which .

(Observe o prompt > e o estilo da mensagem de erro.)

Use /bin/which -a … ou /usr/bin/which -a … para invocar o GNU, o qual.

    
por 12.07.2016 / 10:30

Tags