Exécutez tous les fichiers Python dans un répertoire en bash

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