Bu çok garip bir davranış. Son zamanlarda, konsolda bir işlem bulmaya çalıştığımda ps aux | grep foo
, bir geri dönüyor grep: command not found
. Tamam, bu benim değiştirdiğim ve yanlış yaptığım bir şey olabilir, ama sorun şu ki, birkaç denemeden sonra aniden ne grep
olduğunu biliyor :
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
Bunun neden olduğu hakkında bir fikrin var mı?
Önerildiği gibi, type grep
her ikisi de sonra bir girin , bir başarısız ve bir çalışan ne olsun:
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
grep
boruyu silersem, sonunda çalışır. O_O