在当前Shell环境中从指定文件读取和执行命令。
source filename [arguments]
filename:要执行的文件
arguments(可选):传递给文件的参数
source返回文件最后一个命令的返回值,如果文件不能读取则会失败
[root@localhost ~]# source ~/.bash_profile
Q:source
和sh
在执行文件方面有什么区别?
A:sh
的执行是在子shell中,source
会使得被执行文件的变量及函数加载进当前终端环境内(除去函数内local修饰的变量等);建议您参考export
命令的 知识点 部分