12345678910111213141516171819202122232425 |
- #!/bin/bash
- MIRROR="ultra"
- URSL="http://intrepid.danplanet.com/pipermail/chirp_users"
- LISTURSL="$(curl $URSL/index.html | \grep -i 'tar.gz' | cut -d'<' -f3 | cut -d'"' -f2)"
- LIST=$LISTURSL
- echo $LIST
- for i in $LIST; do
- if [[ ! -e $i ]]; then
- echo "$i";
- # wget $URSL/$i $i
- fi
-
- done
|