我从'c'程序调用一个shell脚本,并在c中有一些变量,我想将它作为参数传递给shell脚本。我尝试使用system()来调用shell脚本,但我作为参数传递的变量被认为是字符串而不是变量。
答案 0 :(得分:0)
shell脚本(a.sh):
# iterates over argument list and prints
for (( i=1;$i<=$#;i=$i+1 ))
do
echo ${!i}
done
C代码:
#include <stdio.h>
int main() {
char arr[] = {'a', 'b', 'c', 'd', 'e'};
char cmd[1024] = {0}; // change this for more length
char *base = "bash a.sh "; // note trailine ' ' (space)
sprintf(cmd, "%s", base);
int i;
for (i=0;i<sizeof(arr)/sizeof(arr[0]);i++) {
sprintf(cmd, "%s%c ", cmd, arr[i]);
}
system(cmd);
}
答案 1 :(得分:0)
您必须构造一个字符串,其中包含要执行的system
的完整命令行。最简单的可能是使用sprintf
。
char buf[100];
sprintf(buf, "progname %d %s", intarg, strarg);
system(buf);
这是初学者的快捷方式。
但是还有fork
和exec
的强大功能(至少对于unix系统而言)。如果你的参数已经是单独的字符串,这可能比一个非常复杂的格式规范更容易;更不用说为复杂的格式规范计算正确的缓冲区大小了!
if (fork() == 0) {
execl(progname, strarg1, strarg2, (char *)NULL);
}
int status;
wait(&status);
if (status != 0) {
printf("error executing program %s. return code: %d\n", progname, status);
}
答案 2 :(得分:0)
以下程序对我有用
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
int main(int argc, char const *argv[])
{
char buf[1000]; //change this length according to your arguments length
int i;
for (i=0;i<argc;i++) {
if(i==0)
{
sprintf(buf, "%s", "sh shell-scriptname.sh");
sprintf(&buf[strlen(buf)]," ");
}
else
{
sprintf(&buf[strlen(buf)],argv[i]);
sprintf(&buf[strlen(buf)]," ");
}
}
//printf("command is %s",buf);
system(buf);
}
我的Shell脚本有像
这样的参数sh shell-scriptname.sh -a x -b y -c z -d blah / blah / blah
我使用以下
编写了C程序gcc c-programname.c -o utility-name
执行
./ utility-name -a x -b y -c z -d blah / blah / blah
为我工作
答案 3 :(得分:-1)
这不会打印子进程的返回状态。
返回状态是16位字。 对于正常终止:字节0的值为零,返回码的字节为1 由于未被捕获的信号导致终止:字节0具有信号编号,字节1为零。
要打印退货状态,您需要执行以下操作:
while ((child_pid =wait(&save_status )) != -1 ) {
status = save_status >> 8;
printf("Child pid: %d with status %d\n",child_pid,status);