run_all.sh 182 B

12345678910
  1. #!/bin/bash
  2. # source run_all.sh
  3. #
  4. echo Press Esc at anytime to skip example, F1 to interrupt
  5. for f in *.py
  6. do
  7. echo "Processing $f script.."
  8. python "$f"
  9. done