I am writing code in C in a Linux terminal trying to display CPU info when the command is run.
execl ( "/bin/lscpu","lscpu",(char*)0);
I have tried everything and can't seem to find the answer that works. This command is giving me a blank and not sure how my execl
command should look here.
Check that the specified path to lscpu is correct,
Where is lscpu located?
Inspect the error returned (the following works),
If you replace the pathname (append an 'X'), you will get an error,