Last active
November 30, 2017 09:28
-
-
Save mansurali901/545437583ee767023dfdab9ec889eb4f to your computer and use it in GitHub Desktop.
Setting up versions for Neo4j graph database
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
# 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