当前位置: 技术问答>linux和unix
请问能否在程序中嵌入命令行(linux)中的命令,如果可以应该怎样做,谢谢!!!
来源: 互联网 发布时间:2015-03-30
本文导语: 如题 | 用system()函数: #include system("ls"); | Please read execXXX functions' usage! System is simple ,but not be security! | system() | system("your command") exec...
如题
|
用system()函数:
#include
system("ls");
#include
system("ls");
|
Please read execXXX functions' usage!
System is simple ,but not be security!
System is simple ,but not be security!
|
system()
|
system("your command")
exec("your command")
exec("your command")
|
用exec系列函数.