PKGBUILDs/core/dcron/run-cron
2009-10-09 21:17:35 -05:00

15 lines
151 B
Bash
Executable file

#!/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