13 lines
180 B
Bash
13 lines
180 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
SLEEP=${1}
|
||
|
|
||
|
overviewer.py --config=/config.py
|
||
|
|
||
|
while [ ! -z ${SLEEP} ] ; do
|
||
|
while [ true ] ; do
|
||
|
sleep ${SLEEP}
|
||
|
overviewer.py --config=/config.py
|
||
|
done
|
||
|
done
|