HOME/bin/mmsdl-part2
frankdelange ecd79740fd Add ~/bin
2022-06-26 20:20:31 +02:00

16 lines
272 B
Bash
Executable file

#!/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...