Bash 4: 일치하는 ")"를 찾는 동안 예기치 않은 EOF가 발생했습니다.
내 스크립트의 매우 단순화된 버전입니다. #!/usr/bin/env bash example="$(bash -rs <<'BASH' -- 'This has been executed in restricted shell' echo "$1" BASH )" echo "$example" Bash 버전 5.1.4를 사용하는 시스템에서는 문제 없이 실행됩니다. 그러나 bash 버전 4.0.44를 사용하는 다른 시스템에서는 오류가 발생합니다. line 2: unexpected EOF while look...