Objectif: je souhaite exécuter un programme Python à partir d'un script shell
Cette fois, supposons que vous ayez un programme Python appelé test.py et laissez-le s'exécuter. Facile à faire. Il suffit d'écrire "python3 filename.py" dans le script shell !!
test.sh
#!/bin/bash
python3 test.py
test.py
print("hello")
Exécuter ↓
$ chmod +x test.sh
$./test.sh
hello #résultat