7 lines
175 B
Bash
7 lines
175 B
Bash
#!/bin/bash
|
|
#this calls the archillect-image-get-and-display script every 10 minutes.
|
|
while true
|
|
do
|
|
[[ $((10#`date +%M`%10)) == 0 ]] && ./archillect.sh
|
|
sleep 60
|
|
done
|