Created
March 4, 2012 11:13
-
-
Save danielpcox/1972446 to your computer and use it in GitHub Desktop.
Runs the neo4j shell
This file contains 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
#!/bin/sh | |
# Set this to your own project directory | |
PROJECT_DIR=/Users/jim/neo/development/neo4j-tutorial | |
LIB_DIR=$PROJECT_DIR/lib | |
java -cp $LIB_DIR/neo4j-jmx.jar:$LIB_DIR/neo4j-community.jar:$LIB_DIR/neo4j-server.jar:$LIB_DIR/neo4j-cypher.jar:$LIB_DIR/neo4j-kernel.jar:$LIB_DIR/neo4j-shell.jar:$LIB_DIR/neo4j-graph-algo.jar:$LIB_DIR/neo4j-lucene-index.jar:$LIB_DIR/lucene-core.jar:$LIB_DIR/neo4j-graph-matching.jar:$LIB_DIR/neo4j-server-static-web.jar:$LIB_DIR/scala-library.jar:$LIB_DIR/geronimo-jta_1.1_spec.jar org.neo4j.shell.StartClient -path $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment