Skip to content

Instantly share code, notes, and snippets.

@nandana
Last active May 14, 2016 11:33
Show Gist options
  • Save nandana/106c3c5b610668963df7747c07df6e8b to your computer and use it in GitHub Desktop.
Save nandana/106c3c5b610668963df7747c07df6e8b to your computer and use it in GitHub Desktop.
Open AIRE RDF dump download script
#! /bin/bash
#download data from http://dx.doi.org/10.5281/zenodo.51077
for i in $(seq -f "%06g" 1 134)
do
wget https://zenodo.org/record/51077/files/output$i.nq.gz
done
#extract the zip files
gzip -d *.nq.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment