首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > 其他服务器 >

一个shell执行另一个带参数shell脚本?解决办法

2012-03-27 
一个shell执行另一个带参数shell脚本????????????参数是怎么传进去的?高手指教!!!!!![解决办法]其实和直接

一个shell执行另一个带参数shell脚本????????????
参数是怎么传进去的?
高手指教!!!!!!

[解决办法]
其实和直接执行一个脚本加参数没有什么区别,我举个例子:
a.sh:
----------------------------
 #!/bin/bash
 
 echo $(($1+111))
 
 exit 0
------------------------------

b.sh
------------------------------
#!/bin/bash

echo "I will call a.sh"
bash a.sh 435 

exit 0
------------------------------

$chmod +x a.sh b.sh+

执行如下:

$ ./b.sh 
I will call a.sh
546

这个例子里面就在b.sh里面调用了脚本a.sh并加上了参数435

热点排行