linux 下的source命令的作用是什么?
4 回答
FFIVE
TA贡献1797条经验 获得超6个赞
source命令用法:
source FileName
作用:在当前bash环境下读取并执行FileName中的命令。
注:该命令通常用命令“.”来替代。
如:source .bash_rc 与 . .bash_rc 是等效的。
注意:source命令与shell scripts的区别是,
source在当前bash环境下执行命令,而scripts是启动一个子shell来执行命令。这样如果把设置环境变量(或alias等等)的命令写进scripts中,就只会影响子shell,无法改变当前的BASH,所以通过文件(命令列)设置环境变量时,要用source 命令。
慕村225694
TA贡献1880条经验 获得超4个赞
这是bash的内置指令。
source filename [argements]
Read and execute commands from filename in the current shell environment and return the exit status of the last command executed from filename.
- 4 回答
- 0 关注
- 685 浏览
添加回答
举报
0/150
提交
取消