标签:
于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! #
版权声明:本文博主原创文章,博客,未经同意不得转载。
标签:
原文地址:http://www.cnblogs.com/bhlsheji/p/4909639.html