mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
15 lines
151 B
Text
15 lines
151 B
Text
|
#!/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
|