我正在阅读bash示例,如果但一些例子写有单个方括号:
if [ -f $param ] then #... fi
其他有双方括号:
if [[ $? -ne 0 ]] then start looking for errors in yourlog fi
有什么区别?
单[]是符合posix shell的条件测试。
原文链接:https://www.f2er.com/bash/392497.htmlDouble [[]]是标准[]的扩展,并且由bash和其他shell(例如zsh,ksh)支持。它们支持额外的操作(以及标准的posix操作)。例如:||而不是-o和regex与=〜匹配。更完整的差异列表可以在bash manual section on conditional constructs找到。
使用[],当你想要你的脚本是可移植的shell。如果您想要不支持[]的条件表达式并且不需要是可移植的,请使用[[]]。