Shell 文件包含

Posted 心流灬灬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell 文件包含相关的知识,希望对你有一定的参考价值。

1 li@ubuntu:~/test$ cat b.sh
2 #!/bin/bash
3
4 myName="Nicholas"
5
6 li@ubuntu:~/test$ cat a.sh
7 #!/bin/bash
8
9 . ./b.sh
10 #source ./b.sh
11
12 echo "My name is $myName ..."
13 li@ubuntu:~/test$ chmod +x a.sh
14 li@ubuntu:~/test$ ./a.sh
15 My name is Nicholas ...
16 li@ubuntu:~/test$

被包含的脚本不需要有执行权限





以上是关于Shell 文件包含的主要内容,如果未能解决你的问题,请参考以下文章

Shell 文件包含

Shell脚本编程之Shell文件包含

Linux之Shell编程(13)--Shell文件包含

Linux之Shell编程(13)--Shell文件包含

Shell 文件包含

Shell:文件包含