1
shebang 회선이 cr-lf와 작동하지 않음
다음 기본 스크립트의 shebang 부분이 작동하지 않는 이유 : $ cat hello.sh #! /bin/sh echo Hello $ ./hello.sh bash: ./hello.sh: /bin/sh^M: bad interpreter: No such file or directory $ cat hello.py #! /usr/bin/env python3 print("Hello") $ ./hello.py : No such file or directory 반면 인터프리터를 수동으로 호출하면 작동합니다. $ sh …