aboutsummaryrefslogtreecommitdiff
path: root/getlibs.sh
diff options
context:
space:
mode:
authorFederico Igne <federico.igne@cs.ox.ac.uk>2020-08-20 17:05:48 +0100
committerFederico Igne <federico.igne@cs.ox.ac.uk>2020-08-20 17:05:48 +0100
commit7e126824e9a6cb456295d2f1535aef975bb63237 (patch)
tree1cdd47cbf1ed26e0704efc21dfe5d0258f2e9d3f /getlibs.sh
parentfce66bdc060fe3ec6bd07fd17eca68ea45f119fa (diff)
downloadRSAComb-7e126824e9a6cb456295d2f1535aef975bb63237.tar.gz
RSAComb-7e126824e9a6cb456295d2f1535aef975bb63237.zip
Add script to automatically download required libs
Diffstat (limited to 'getlibs.sh')
-rwxr-xr-xgetlibs.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/getlibs.sh b/getlibs.sh
new file mode 100755
index 0000000..4deb7ee
--- /dev/null
+++ b/getlibs.sh
@@ -0,0 +1,11 @@
1#!/bin/sh
2
3VERSION="3.1.1"
4NAME="RDFox-linux-$VERSION"
5LINK="https://rdfox-distribution.s3.eu-west-2.amazonaws.com/release/v$VERSION/$NAME.zip"
6DEST="./lib/"
7
8mkdir -p "$DEST"
9wget "$LINK"
10unzip "$NAME.zip"
11cp "./$NAME/lib/JRDFox.jar" "$DEST"