Exécutez tous les fichiers Python dans un répertoire en bash
for f in *.py; do python "$f"; done
itsvinayak
for f in *.py; do python "$f"; done