当前位置: 操作系统/服务器>linux
Shell中调用、引用、包含另一个脚本文件的三种方法
来源: 互联网 发布时间:2014-10-16
本文导语: 脚本 first (测试示例1) first#!/bin/bashecho 'your are in first file' 方法一:使用source #!/bin/bashecho 'your are in second file'source first 方法二:使用. #!/bin/bashecho 'your are in second file'. first方法三:使用sh#!/bin/bashecho 'your are in second file'sh first
脚本 first (测试示例1)
first
#!/bin/bash
echo 'your are in first file'
方法一:使用source
#!/bin/bash
echo 'your are in second file'
source first
方法二:使用.
#!/bin/bash
echo 'your are in second file'
. first
方法三:使用sh
#!/bin/bash
echo 'your are in second file'
sh first