Skip to content

Instantly share code, notes, and snippets.

@stuaxo
Created November 23, 2017 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuaxo/a4fc39e4f6787cb0a4e14c649e832390 to your computer and use it in GitHub Desktop.
Save stuaxo/a4fc39e4f6787cb0a4e14c649e832390 to your computer and use it in GitHub Desktop.
Download Freeplane mind mapper
#!/bin/bash
URL="https://downloads.sourceforge.net/project/freeplane/freeplane%20preview/freeplane_bin-1.6.11-pre04.zip"
ZIP=$(basename ${URL})
DIR=$(basename ${ZIP} .zip)
set -ex
cd /tmp
curl -LO "${URL}"
unzip -d $DIR $ZIP
chmod +x $DIR/freeplane.sh
sudo mv $DIR /opt
sudo ln -s /opt/$DIR/freeplane.sh /usr/local/bin/freeplane
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment