c语言调用shell脚本
时间: 2023-12-21 21:31:01 浏览: 93
在C语言中,可以使用system()、popen()和exec系列函数来调用shell脚本。
1. 使用system()函数调用shell脚本:
```c
#include <stdlib.h>
int main() {
system("sh script.sh"); // 调用名为script.sh的shell脚本
return 0;
}
```
2. 使用popen()函数调用shell脚本并获取输出结果:
```c
#include <stdio.h>
int main() {
FILE *fp;
char buffer[1024];
fp = popen("sh script.sh", "r"); // 调用名为script.sh的shell脚本,并以只读方式打开管道
if (fp == NULL) {
printf("Failed to run command\n");
return 1;
}
while (fgets(buffer, sizeof(buffer), fp) != NULL) {
printf("%s", buffer); // 输出shell脚本的输出结果
}
pclose(fp); // 关闭管道
return 0;
}
```
3. 使用exec系列函数调用shell脚本:
```c
#include <unistd.h>
int main() {
execl("/bin/sh", "sh", "script.sh", (char *)0); // 调用名为script.sh的shell脚本
return 0;
}
```
阅读全文