1
linia shebang nie działa z cr-lf
Dlaczego nie działają fragmenty następujących skryptu elementarnego: $ 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 podczas gdy ręczne wywoływanie tłumacza działa: $ sh hello.sh …