欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

shell脚本--文件包含 包含文件引入文件导入文件读取文件载入文件 有大用

首先介绍一下shell中包含文件的方法,在C,C++,PHP中都是用include来包含文件,Go和Java使用import来包含(导入)包,而在shell中,很简单,只需要一个点“.”,然后跟着文件路径及文件名,或者使用source关键字也可以,注意文件路径可以使用绝对路径和相对路径。

  下面是一个文件包含的例子:three.sh包含one.sh和two.sh

1
2
3
4
#!/bin/bash
#one.sh
 
one="the is one in file one.sh"

  

1
2
3
4
#!/bin/bash
#two.sh
 
two="this is two in file two.sh"

  

1
2
3
4
5
6
7
8
9
#!/bin/bash
#three.sh
 
#以下包含文件的两种方法等效,推荐使用source关键字
. one.sh
source two.sh
 
echo $one
echo $two

  运行结果:

1
2
3
4
[root@localhost ~]# ./three.sh
the is one in file one.sh
this is two in file two.sh
[root@localhost ~]#

  

  需要注意的是,一次只能包含一个文件,不要包含多个文件,比如下例中,尝试使用source一次性包含两个文件,最终,包含进来的只有第一个文件,后面的文件没有成功包含

1
2
3
4
5
6
7
#!/bin/bash
#three.sh
 
source one.sh two.sh
 
echo $one
echo $two

  运行结果:

1
2
3
4
[root@localhost ~]# ./three.sh
the is one in file one.sh
 
[root@localhost ~]#

  

  还要注意的是,在其他语言中,重复包含同一个文件(B包含了A,C包含了A和B,造成C包含了A两次)会报错,而在shell中是不会报错的,仍旧会正常运行!!!!

如需转载,请注明文章出处,谢谢!!!


来自  https://www.cnblogs.com/-beyond/p/8410583.html

普通分类: