What is happening when you are execuing commands ?
October20
Well, when you are exeuting any commands or scripts, the shell will internally do the system calls and do the job very quickly.
you want to trace the sytem calls and signals ?
lets try….
Example:
use strace command to trace the system calls
just do strace -c ls
you will get the list of system calls that made by the command ls
The best way to understand
do man strace
Recent Comments