blob: d64a40c75ff3b55e23cae262e78610e08160276c (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
BENCHMARK=dbpedia
wget "http://krr-nas.cs.ox.ac.uk/2015/jair/PAGOdA/$BENCHMARK.zip" && \
unzip "$BENCHMARK.zip" && \
mv "$BENCHMARK"/* ./ && \
rm -rf "$BENCHMARK.zip" "$BENCHMARK/"
|