Führen Sie alle Python -Dateien in einem Verzeichnis in Bash aus

for f in *.py; do python "$f"; done
itsvinayak