mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
14 lines
151 B
Bash
Executable file
14 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
|