int iRetCode;char sStr[100];sprintf(sStr,"home/test/upload/unload.sh");iRetCode=system(sStr);if(iRetCode<0){ printf("shell error!");}
好像是execute然后里面直接可以用bash指令
system(“这里是你要执行的脚本文件的绝对位置或者相对位置”);