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 hello.sh Hello $ python3 hello.py Hello