c语言运行shell脚本
时间: 2024-01-19 13:17:30 浏览: 101
在C语言中,可以使用system()函数或popen()函数来运行shell脚本。
1. 使用system()函数运行shell脚本:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
int result = system("shell_script.sh"); // 替换为你的shell脚本文件名
if (result == -1) {
printf("运行shell脚本失败\n");
} else {
printf("运行shell脚本成功\n");
}
return 0;
}
```
2. 使用popen()函数运行shell脚本并获取输出结果:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
FILE *fp;
char buffer[1024];
fp = popen("shell_script.sh", "r"); // 替换为你的shell脚本文件名
if (fp == NULL) {
printf("打开shell脚本失败\n");
return -1;
}
while (fgets(buffer, sizeof(buffer), fp) != NULL) {
printf("%s", buffer);
}
pclose(fp);
return 0;
}
```
这两种方法都可以用来运行shell脚本,但是system()函数只返回命令是否运行成功的标志位,而popen()函数可以获取shell指令的运行结果。
阅读全文