1
la línea shebang no funciona con cr-lf
¿Por qué las partes shebang de los siguientes scripts elementales no funcionan? $ 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 mientras que llamar al …