1
ligne de shebang ne fonctionne pas avec cr-lf
Pourquoi les parties shebang des scripts élémentaires suivants ne fonctionnent-elles pas: $ 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 alors que l'appel manuel de …