|
|
|
|
|
by westurner
1094 days ago
|
|
ps wxa | grep <cmd> # or pgrep
strace -f -f -e trace=file <cmd> | grep -v '-1 ENOENT (No such file or directory)$'
IIRC there's some way to filter ENOENT messages with strace instead of grep?Strace: https://en.wikipedia.org/wiki/Strace |
|