sh (bash 아님)는 단일 [ 또는 이중 [[ 대괄호?

sh (bash 아님)는 단일 [ 또는 이중 [[ 대괄호?

이 스크립트가 있습니다.

#!/usr/bin/env sh

# note: we must use sh instead of bash, it's more cross-platform

set -e;

if [[ "$skip_postinstall" == "yes" ]]; then   # TODO rename 'skip_postinstall' to something more specific
    echo "skipping postinstall routine.";
    exit 0;
fi

export FORCE_COLOR=1;
export skip_postinstall="yes";   # TODO rename 'skip_postinstall' to something more specific

mkdir -p "$HOME/.oresoftware/bin" || {
  echo "Could not create .oresoftware dir in user home.";
  exit 1;
}

(
  echo 'Installing run-tsc-if on your system.';
  curl  -H 'Cache-Control: no-cache' -s -S -o- 'https://raw.githubusercontent.com/oresoftware/run-tsc-if/master/install.sh' | bash || {
     echo 'Could not install run-tsc-if on your system. That is a problem.';
     exit 1;
  }
) 2> /dev/null


if [[ "$(uname -s)" != "Darwin" ]]; then
   exit 0;
fi

if [[ ! -f "$HOME/.oresoftware/bin/realpath" ]]; then
  (
    curl --silent -o- 'https://raw.githubusercontent.com/oresoftware/realpath/master/assets/install.sh' | bash || {
       echo "Could not install realpath on your system.";
       exit 1;
    }
  )
fi

# the end of the postinstall script

내가 그것을 실행하면 나는 얻는다 :

./assets/postinstall.sh: 7: ./assets/postinstall.sh: [[: not found
Installing run-tsc-if on your system.

 => Installing 'run-tsc-if' on your system.
 => run-tsc-if download/installation succeeded.

./assets/postinstall.sh: 29: ./assets/postinstall.sh: [[: not found
./assets/postinstall.sh: 33: ./assets/postinstall.sh: [[: not found

그러나 이중 [[ 대괄호를 단일 대괄호로 바꾸면 다음과 같은 결과를 얻습니다.

./postinstall.sh: 7: [: unexpected operator

이것은 단지 다음에서 온 것입니다:

if [ "$skip_postinstall" == "yes" ]; then  
    echo "skipping postinstall routine.";
    exit 0;
fi

그럼 어떻게 해야 할까요? 대신 and를 사용해 보았지만 test그것도 작동하지 않았습니다.[[[

답변1

[[ksh에서 파생된 "확장 테스트"이며 bash/zsh에서도 지원되므로해서는 안 된다그들을 인식하십시오. 또한 이 ==연산자는 POSIX가 아니라 =문자열 비교를 위한 쉘 테스트 연산자입니다.

이 두 가지는 매우 일반적인 것입니다.바시즘.

답변2

내 생각엔 sh가 == 비교를 처리할 수 없기 때문인 것 같습니다. 따라서 다음과 같아야 합니다.

if [ "$skip_postinstall" = "yes" ]; then  
    echo "skipping postinstall routine.";
    exit 0;
fi

그게 아니야

if [ "$skip_postinstall" == "yes" ]; then  
    echo "skipping postinstall routine.";
    exit 0;
fi

크리키

관련 정보