diff options
Diffstat (limited to 'dcron/runjobs')
-rwxr-xr-x | dcron/runjobs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/dcron/runjobs b/dcron/runjobs new file mode 100755 index 0000000..b61789e --- /dev/null +++ b/dcron/runjobs @@ -0,0 +1,19 @@ +#!/bin/bash +# +# /usr/sbin/runjobs: run all executables in specified directory +# + +if [ "$1" = "" ]; then + echo "usage: $0 <dir>" + exit 1 +fi + +cd $1 || exit 1 + +for file in ./*; do + if [ -f $file ] && [ -x $file ]; then + nice -n 19 $file + fi +done + +# End of file |