Permalink
Fetching contributors…
Cannot retrieve contributors at this time
|
#include "apue.h" |
|
|
|
int |
|
main(int argc, char *argv[]) |
|
{ |
|
int status; |
|
|
|
if (argc < 2) |
|
err_quit("command-line argument required"); |
|
|
|
if ((status = system(argv[1])) < 0) |
|
err_sys("system() error"); |
|
|
|
pr_exit(status); |
|
|
|
exit(0); |
|
} |
You can't perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.