Skip to content

Commit 221368e

Browse files
committed
Execution script
1 parent 75c94e0 commit 221368e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

ldbc_socialnet_qgen/run.sh

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/bin/bash
2+
3+
basedir=${0%/*}
4+
libdir=${basedir}/lib
5+
SEP=':'
6+
7+
if [ -z "$CLASSPATH" ]
8+
then
9+
CLASSPATH=${basedir}/bin # for development version only
10+
else
11+
CLASSPATH=$CLASSPATH$SEP${basedir}/bin # for development version only
12+
fi
13+
14+
if [ "$(uname)" = "Cygwin" ]; then SEP=';'; fi
15+
for jar in $libdir/*.jar
16+
do
17+
if [ ! -e "$jar" ]; then continue; fi
18+
CLASSPATH="$CLASSPATH$SEP$jar"
19+
done
20+
21+
export CLASSPATH
22+
23+
./sibdriver -t 300000 -idir td_data -uqp query -uc sib/int -mt 1 -runs 1 http://localhost:8608/sparql -printres -q -defaultparams -rpvq

0 commit comments

Comments
 (0)