在Java,Python中,可以用import的方式来进行脚本或模块之间调用,例如:
>>> import math >>> math.sqrt(4) 2.0在Shell中要如何调用别的shell脚本,或别的脚本中的变量,函数呢?
方法一: . ./subscript.sh
方法二: source ./subscript.sh
注意:
例如:
###subscripts.sh 脚本内容如下:### #!/bin/bash string="Hello,World! \n"
###main.sh 脚本内容如下### #!/bin/bash . ./subscripts.sh echo -e ${string} exit 0输出结果:
# chmod +x ./main.sh # ./main.sh Hello,World! #
Shell学习之: 脚本之间的调用,布布扣,bubuko.com
原文地址:http://blog.csdn.net/jerry_1126/article/details/38611841