Mirrors: mirror-josm
| File mirror-josm, 348 bytes (added by dom, 5 years ago) |
|---|
| Line | |
|---|---|
| 1 | #!/bin/sh |
| 2 | |
| 3 | set -e |
| 4 | |
| 5 | DST="/srv/www/larted.org.uk/html/mirrors/josm" |
| 6 | URL="http://www.larted.org.uk/mirrors/josm/" |
| 7 | |
| 8 | cd $DST |
| 9 | wget --no-parent \ |
| 10 | --non-verbose \ |
| 11 | --mirror \ |
| 12 | --no-host-directories \ |
| 13 | --cut-dirs=1 \ |
| 14 | --user-agent="Mirroring for $URL" \ |
| 15 | http://www.eigenheimstrasse.de/josm/ |
| 16 | find -name 'index.html*' -exec rm {} \; |
