在C语言中调用Linux Shell命令
2018-01-26 本文已影响12人
louyang
# cat a.c
#include <stdlib.h>
int main()
{
system("pwd");
}
# pwd
/opt2/foo/execte-shell-by-c
# # gcc a.c && ./a.out
/opt2/foo/execte-shell-by-c
# cat a.c
#include <stdlib.h>
int main()
{
system("pwd");
}
# pwd
/opt2/foo/execte-shell-by-c
# # gcc a.c && ./a.out
/opt2/foo/execte-shell-by-c