repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 19 12:17:07 UTC 2012
[aur-mirror.git]
/
anacron
/
run-anacron
blob
51007a15a08b013bf6db98062b9078fa42df5a2d
1
#!/bin/sh
2
3
4
if
[
-z
$1
];
then
5
echo
"Usage:
$0
crondir"
6
exit
1
7
fi
8
9
for
cron
in
$1
/* ;
do
10
if
[
-x
$cron
];
then
11
$cron
12
fi
13
done
14
unset
cron