HOME/bin/mmsdl-part2

17 lines
272 B
Text
Raw Normal View History

2022-06-26 20:20:31 +02:00
#!/bin/bash
prefix=mms://publicims.groovygecko.net/publicims/council/beva/
status=130
limit=2
until [ $status == 0 ]; do
mimms -t ${limit} -r ${prefix}${1}
status=$?
echo download terminated with status $status...
sleep 5
done
echo download should be complete...