Zweck: Ich möchte ein Python-Programm in einem Shell-Skript ausführen
Nehmen wir diesmal an, Sie haben ein Python-Programm namens test.py und lassen es laufen. Einfach zu machen. Schreiben Sie einfach "python3 filename.py" in das Shell-Skript!
test.sh
#!/bin/bash
python3 test.py
test.py
print("hello")
↓ ausführen
$ chmod +x test.sh
$./test.sh
hello #Ergebnis
Recommended Posts