Steps to run:
$ cd <TS-Repo>/testing/cli-test-scripts

$ mvn clean package

To get usage flags:
java -jar target/ts-cli-script-jar-with-dependencies.jar -help

Examples to execute test script generator:

java -jar target/ts-cli-script-jar-with-dependencies.jar -create 200 <- Creates a file called "cli.json" 
                                                                        with 200 triples

java -jar target/ts-cli-script-jar-with-dependencies.jar -generate <- Will generate 3 text files representing triples for all
                   existing subjects, predicates, and objects given a
                   fuseki ip address location. If no IP given will default
                   to: http://IP              /ds/sparql

 java -jar target/ts-cli-script-jar-with-dependencies.jar -exists cli.json <- Checks triples in the input file 
 "cli.json" and outputs the results in a file called "exists.json"
 Flag usage
 -exists  -> reads from stdin and uses the default
                   endpoint
 -exists <file> -> reads json from a file and uses the
                   default endpoint
 -exists <file> <ip address> -> reads json from file and
                   uses given ip address
 
