I need to track read system calls for specific files, and I\'m currently doing this by parsing the output of strace. Since read operat
read
strace
Parsing command-line utils like strace is cumbersome; you could use ptrace() syscall instead. See man ptrace for details.
man ptrace