1

#include在 bash 或 sh 中,与 C/C++中的预处理器指令等效的是什么?

我想在单独的配置文件中保留一些路径,由 sh 脚本加载。

还有其他方法吗?

谢谢你。

4

2 回答 2

4

它是source

source /path/to/file.sh

甚至

. /path/to/file.sh
于 2012-06-29T09:15:48.867 回答
2

使用source other_file. other_file;请参阅http://www.gnu.org/software/bash/manual/bashref.html#Bash-Builtins

于 2012-06-29T09:15:43.900 回答