码迷,mamicode.com
首页 > 系统相关 > 详细

Shell中调用、引用、包含另一个脚本文件的三种方法

时间:2016-05-18 17:31:10      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

脚本 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

Shell中调用、引用、包含另一个脚本文件的三种方法

标签:

原文地址:http://www.cnblogs.com/wanghuaijun/p/5505835.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!