Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Look at the source code for these commands. I think they are all in coreutils package. – Aleksandar Oct 15 '12 at 19:18
you could study the source code of both – Serge Oct 15 '12 at 19:18
4  
Or use strace -o /tmp/ls.out ls -l | strace -o /tmp/wc.out wc -l to trace each system call for you... (assuming this is Linux, anyway - on Solaris it would be truss instead of strace; AIX and other *NIXen have similar facilities, but those are the two I know best...) – twalberg Oct 15 '12 at 19:30
@Aleksandar I am not asking about the system call of each individual commands but the when they are used in conjunction pipelining. – Rahul Kumar Dubey Oct 16 '12 at 3:15
1  
@Serge how can i get system call used when both are used in pipelining by reading source code.. can't you explain the system call used during pipelining. – Rahul Kumar Dubey Oct 16 '12 at 3:17
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.