Questo è un comportamento molto strano. Ultimamente, ogni volta che cerco di trovare un processo su console con ps aux | grep foo
, restituisce un grep: command not found
. Ok, potrebbe essere qualcosa che ho cambiato e ho sbagliato, ma il problema è che, dopo alcuni tentativi, sa improvvisamente cos'è grep
:
MM:.dev$ ps aux | grep foo
-bash: grep: command not found
MM:.dev$ ps aux | grep foo
-bash: grep: command not found
MM:.dev$ ps aux | grep foo
-bash: grep: command not found
MM:.dev$ ps aux | grep foo
MM 70953 0,0 0,0 2699108 744 ?? Ss 10:32AM 0:08.77 foo bar
MM 3756 0,0 0,0 2423356 204 s004 R+ 10:12AM 0:00.00 grep foo
Qualche idea per cui sta succedendo questo?
Come suggerito, questo è quello che ottengo quando inserisci type grep
dopo entrambi, l'uno fallito e quello funzionante:
MM:.dev$ ps aux | grep foo
-bash: grep: command not found
MM:.dev$ type grep
grep is /usr/bin/grep
MM:.dev$ ps aux | grep foo
MM 5694 0,0 0,0 2433796 676 s006 S+ 10:47AM 0:00.00 grep foo
MM:.dev$ type grep
grep is /usr/bin/grep