怎么在c语言程序里调用shell脚本文件

2024-11-17 21:31:29
推荐回答(3个)
回答1:

int iRetCode;
char sStr[100];
sprintf(sStr,"home/test/upload/unload.sh");
iRetCode=system(sStr);
if(iRetCode<0)
{
  printf("shell error!");
}

回答2:

好像是execute
然后里面直接可以用bash指令

回答3:

system(“这里是你要执行的脚本文件的绝对位置或者相对位置”);