当前位置: 技术问答>linux和unix
linux下如何用c语言调用shell命令
来源: 互联网 发布时间:2015-11-10
本文导语: 如果设置一个ip ifconfig eth0 192.168.1.100 例如把上面的shell写入c程序 怎么调用 | system函数 | 可以用system函数和pipe,具体用法可以查manual,man system or man popen | system("i...
如果设置一个ip
ifconfig eth0 192.168.1.100
例如把上面的shell写入c程序
怎么调用
ifconfig eth0 192.168.1.100
例如把上面的shell写入c程序
怎么调用
|
system函数
|
可以用system函数和pipe,具体用法可以查manual,man system or man popen
|
system("ifconfig eth0 192.168.1.100");
|
#include
int system(const char *string);
int system(const char *string);
|
楼上的都说了