微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

linux shell脚本 引入外部shell文件

shell脚本 引入文件 文件包含的语法格式如下:

# 注意点号(.)和文件名中间有一空格
. filename
# 或
source filename

实例:

[root@hadoop01 shell]# vi test1.sh
 
#!/bin/bash                                                                                   
name=timo
 
[root@hadoop01 shell]# vi test2.sh
 
#!/bin/bash
tag="this is a boy"
 
[root@hadoop01 shell]# vi test3.sh
 
#!/bin/bash
. ./test1.sh
source ./test2.sh
echo $name$tag
 
[root@hadoop01 shell]# chmod a+x test3.sh 
[root@hadoop01 shell]# ./test3.sh
timothis is a boy
 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐