Do you want to find what system calls are being called when you execute a command , then run the strace command as below
$strace -c /bin/ls
This command will list all the system calls made by "ls" command with cpu time spent on each system calls.
$strace -c /bin/ls
This command will list all the system calls made by "ls" command with cpu time spent on each system calls.
Comments
Post a Comment