Re-add fixed binaries
authorJakub Skoczen <jakub@indexdata.dk>
Fri, 14 Mar 2014 18:03:07 +0000 (19:03 +0100)
committerJakub Skoczen <jakub@indexdata.dk>
Fri, 14 Mar 2014 18:03:07 +0000 (19:03 +0100)
bin/CQLGenerator [new file with mode: 0755]
bin/CQLLexer [new file with mode: 0755]
bin/CQLParser [new file with mode: 0755]

diff --git a/bin/CQLGenerator b/bin/CQLGenerator
new file mode 100755 (executable)
index 0000000..80182aa
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+# Trivial script to invoke the CQLGenerator test-harness
+DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+JAR=$DIR/../target/cql-java.jar
+
+java -cp $JAR org.z3950.zing.cql.CQLGenerator ${@+"$@"}
diff --git a/bin/CQLLexer b/bin/CQLLexer
new file mode 100755 (executable)
index 0000000..8310fb7
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+# Trivial script to invoke the CQLLexer test-harness
+DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+JAR=$DIR/../target/cql-java.jar
+
+java -cp $JAR org.z3950.zing.cql.CQLLexer ${@+"$@"}
diff --git a/bin/CQLParser b/bin/CQLParser
new file mode 100755 (executable)
index 0000000..c5a384f
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+# Trivial script to invoke the CQLParser test-harness
+DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+JAR=$DIR/../target/cql-java.jar
+
+java -cp $JAR org.z3950.zing.cql.CQLParser ${@+"$@"}