tmux-kanagawa/sleep_weather.sh
2020-03-14 21:13:46 -07:00

15 lines
161 B
Bash
Executable file

#/usr/bin/env bash
#wrapper script for running weather on interval
main()
{
while true
do
./weather.sh
sleep 600
done
}
#run main driver function
main