> strace w 2>&1 | grep urandom
read(4, "/usr/bin/grep\0urandom\0", 2047) = 22
>
Tại sao "w" cần urandom? Làm thế nào để tránh điều này?
CẬP NHẬT:
> strace w 2>&1 | awk '/urandom/'
read(4, "awk\0/urandom/\0", 2047) = 14
>
Vì vậy, đó là bộ lọc có liên quan đến urandom?
> strace who 2>&1 | grep urandom
>
Vậy thì tại sao "ai" không bị ảnh hưởng?
urandom
quyền truy cập trong w
mã nguồn.
grep
và của bạn awk
. Nó không w
mở /dev/urandom
tập tin thiết bị. Nó tương tự nhưps -aux | grep grep
strace w 2>&1 | grep unicorns
;-)
w
nhu cầuurandom
. Đó là becasePiped commands run concurrently
: unix.stackexchange.com/questions/37508/ trộm