6
Bash에서 단일 및 이중 대괄호의 차이점
나는 bash 예제를 읽고 if있지만 일부 예제는 대괄호로 작성됩니다. if [ -f $param ] then #... fi 이중 대괄호가있는 기타 : if [[ $? -ne 0 ]] then start looking for errors in yourlog fi 차이점은 무엇입니까?
161
bash
if-statement