我们举一些例子:
$ cat source.sh #!/bin/bash echo "I'm file source-1" . source-2.sh
和:
$ cat source-2.sh #!/bin/bash echo "I'm file source-2"
现在运行:
$ ./source.sh I'm file source-1 I'm file source-2
$ cat source.sh #!/bin/bash echo "I'm file source-1" source source-2.sh
它与使用点具有相同的效果。
那么 – 这种方法有什么区别?谢谢。
没有区别。
原文链接:https://www.f2er.com/bash/387200.html从manual:
source
06000