Created
January 1, 2011 20:22
-
-
Save msiebuhr/761978 to your computer and use it in GitHub Desktop.
Small script for automatic updates of JOSM.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/tcsh | |
set TESTED_VERSION=`wget http://josm.openstreetmap.de/tested -O - -q` | |
set NEW_JOSM=/usr/share/josm/josm-tested-$TESTED_VERSION.jar | |
set JOSM=/usr/share/josm/josm.jar | |
wget http://josm.openstreetmap.de/josm-tested.jar -O $NEW_JOSM -c | |
rm $JOSM | |
ln -s $NEW_JOSM $JOSM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment