Skip to content

Commit

Permalink
script to download and unzip example data
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisHoch committed Dec 1, 2020
1 parent c458f92 commit 6be4352
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions example/download_example_data.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
##
## this file can be used to download the example data and extract to folder
## that way, the cfg-files can be used immediately
##

echo download zip-file
# for WIN
curl https://zenodo.org/record/4297295/files/example_data.zip -o example_data.zip
# for UNIX
wget curl https://zenodo.org/record/4297295/files/example_data.zip

echo unzip data
unzip example_data.zip -d example_data

echo remove zip-file
rm example_data.zip

0 comments on commit 6be4352

Please sign in to comment.