linux system 执行shell脚本传参数的问题。。。
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
问题:
我写的shell程序传入的参数是
s1 s2都是字符串。
s1是 -P 22 /home/
s2是/home
这样在程序中,直接system调用的话,会出现只把-P 22分别给了s1,s2,怎么处理这个问题,让-P 22 /home/
传给s1,/home传给s2?
解决方法:
使用system调用的话,必须使用字符串;
如下:
char str[1024];
char a1[] = "-P 22 /home/";
char a2[] = "/home";
sprintf(str, "a.sh \"%s\" \"%s\"", a1, a2);
system(str);
这样就可以了;
实验验证:
a1.sh
#/bin/bash
#ls |wc -l
echo change_pppoe.sh '$1='$1--'$2'=$2
a1.c
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#define MAX 1024
#define PATH "~/a/home/a1.sh"
int main()
{
FILE *fp;
char buffer[MAX];
sprintf(buffer, "~/a/home/a1.sh \"i am a girl!\" \"this is\"");
printf("%s\n", buffer);
system(buffer);
}
输出:
[root@bogon home]# ./a1
~/a/home/a1.sh "i am a girl!" "this is"
change_pppoe.sh $1=i am a girl!--$2=this is
验证完全正确
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)