when we write ls -l | wc -l command on terminal what system calls are made internally at kernel level??
and How can we verify all those system calls made.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
| show 3 more comments |
coreutilspackage. – Aleksandar Oct 15 '12 at 19:18strace -o /tmp/ls.out ls -l | strace -o /tmp/wc.out wc -lto trace each system call for you... (assuming this is Linux, anyway - on Solaris it would betrussinstead ofstrace; AIX and other *NIXen have similar facilities, but those are the two I know best...) – twalberg Oct 15 '12 at 19:30