在
Bash脚本中,是否有单独的语句替代?
if [ -f /path/to/some/file ]; then source /path/to/some/file fi
最重要的是,文件名只有一次,而不使其变为一个变量(它增加了更多的行).
例如,在PHP中,您可以这样做
@include("/path/to/some/file"); // @ makes it ignore errors
是否定义您自己的版本的@include选项?
原文链接:https://www.f2er.com/bash/386548.htmlinclude () { [[ -f "$1" ]] && source "$1" } include FILE