17 lines
272 B
Text
17 lines
272 B
Text
![]() |
#!/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...
|
||
|
|
||
|
|