summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/dcron/run-cron
blob: 51007a15a08b013bf6db98062b9078fa42df5a2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh


if [ -z $1 ]; then
   echo "Usage: $0 crondir"
   exit 1
fi

for cron in $1/* ; do
  if [ -x $cron ]; then
     $cron
  fi
done
unset cron