Execute todos os arquivos Python em um diretório em Bash
for f in *.py; do python "$f"; done
itsvinayak
for f in *.py; do python "$f"; done