Skip to content

Instantly share code, notes, and snippets.

View si-rbrisita's full-sized avatar

Robert Brisita si-rbrisita

View GitHub Profile
@jexp
jexp / neo.sh
Last active May 18, 2016 17:44
#!/bin/bash
# usage neo.sh [-h host:port] [-u user:pass] [cmd]
# end cypher statements with semicolon
# terminate read loop with ^d or return
HOST="localhost:7474"
if [ "$1" == "-h" ]; then
shift; HOST="$1";shift;
fi
AUTH=""