#include
在 bash 或 sh 中,与 C/C++中的预处理器指令等效的是什么?
我想在单独的配置文件中保留一些路径,由 sh 脚本加载。
还有其他方法吗?
谢谢你。
它是source
。
source /path/to/file.sh
甚至
. /path/to/file.sh
使用source other_file
或. other_file
;请参阅http://www.gnu.org/software/bash/manual/bashref.html#Bash-Builtins。