答案1
文件导出_FOOBAR:
# set variable FOOBAR to "hi"
FOOBAR=hi
export FOOBAR
在提示下
yourhost:/~ > source export_FOOBAR
答案2
对于 Bash 内置函数,使用内置的help
。例如:
$ help source
要查看命令是否由 shell 处理(是内置命令),请使用type
bash 内置命令:
$ type help
$ type type
文件导出_FOOBAR:
# set variable FOOBAR to "hi"
FOOBAR=hi
export FOOBAR
在提示下
yourhost:/~ > source export_FOOBAR
对于 Bash 内置函数,使用内置的help
。例如:
$ help source
要查看命令是否由 shell 处理(是内置命令),请使用type
bash 内置命令:
$ type help
$ type type