Skip to content

Instantly share code, notes, and snippets.

@mansurali901
Last active November 30, 2017 09:28
Show Gist options
  • Save mansurali901/545437583ee767023dfdab9ec889eb4f to your computer and use it in GitHub Desktop.
Save mansurali901/545437583ee767023dfdab9ec889eb4f to your computer and use it in GitHub Desktop.
Setting up versions for Neo4j graph database
# This script install Apache Maven 3.5.2 in Ubuntu 16.04
# Author Mansur Ul Hasan
# [email protected]
DownloadVersion () {
case $1 in
setup_2-3-11)
wget -O neo4j-community-2.3.11-unix.tar.gz https://www.dropbox.com/s/uz2kb0kz1b4vwz6/neo4j-community-2.3.11-unix.tar.gz?dl=0
mv `pwd`/neo4j-community-2.3.11-unix.tar.gz /usr/local/
cd /usr/loca/
tar -xvf neo4j-community-2.3.11-unix.tar.gz
ln -s `pwd`/neo4j-community-2.3.11 `pwd`/latest
;;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment