> strace w 2>&1 | grep urandom
read(4, "/usr/bin/grep\0urandom\0", 2047) = 22
>
Por que "w" precisa de urandom? Como evitar isso?
ATUALIZAR:
> strace w 2>&1 | awk '/urandom/'
read(4, "awk\0/urandom/\0", 2047) = 14
>
então é a filtragem que tem algo a ver com urandom?
> strace who 2>&1 | grep urandom
>
Então, por que "quem" não é afetado?
urandom
acesso no w
código fonte.
grep
e seu awk
. Não está w
abrindo o /dev/urandom
arquivo do dispositivo. É semelhante aps -aux | grep grep
strace w 2>&1 | grep unicorns
;-)
w
que precisaurandom
. É porquePiped commands run concurrently
: unix.stackexchange.com/questions/37508/…