Запустите все файлы Python в каталоге в Bash
for f in *.py; do python "$f"; done
itsvinayak
for f in *.py; do python "$f"; done