Usa questo:
for f in *.sh; do
bash "$f"
done
Se vuoi interrompere l'intera esecuzione quando uno script fallisce:
for f in *.sh; do
bash "$f" || break # execute successfully or break
# Or more explicitly: if this execution fails, then stop the `for`:
# if ! bash "$f"; then break; fi
done
Se vuoi eseguire, ad esempio, x1.sh
, x2.sh
, ..., x10.sh
:
for i in `seq 1 10`; do
bash "x$i.sh"
done
Per preservare il codice di uscita dello script non riuscito (in risposta a @VespaQQ):
#!/bin/bash
set -e
for f in *.sh; do
bash "$f"
done
C'è un modo molto più semplice, puoi usare il run-parts
comando che eseguirà tutti gli script nella cartella:
run-parts /path/to/folder