How should my execl command look in order for it to display "CPU info" in linux command window

47 Views Asked by At

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.

1

There are 1 best solutions below

3
On

Check that the specified path to lscpu is correct,

ls -altr /bin/lscpu

Where is lscpu located?

which lscpu
ls -altr /bin/lscpu /usr/bin/lscpu

Inspect the error returned (the following works),

#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>

int main() {
    int err;
    err = execl( "/bin/lscpu","lscpu",(char*)0 );
    if( err != 0 ) {
        printf("errno=%d: %s\n",errno,strerror(errno));
    }
}

If you replace the pathname (append an 'X'), you will get an error,

err = execl( "/bin/lscpuX","lscpu",(char*)0 );