Skip to content
Snippets Groups Projects
run-all.sh 114 B
Newer Older
#!/bin/sh

for i in $(find . -not -name "*.sh" -type f | sort -n); do
    [ -x $i ] && echo "\nRun $i" && $i