-
Notifications
You must be signed in to change notification settings - Fork 33
/
get_miracle.sh
executable file
·22 lines (17 loc) · 951 Bytes
/
get_miracle.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
dest=$1
if [ "$dest" == "" ]; then
echo "Usage: $0 <path to store the downloaded data>"
exit
fi
mkdir -p $dest
echo "Downloading A1.h5..."
wget --content-disposition -O $dest/A1.h5 https://depositonce.tu-berlin.de/bitstreams/67156d9c-224d-4d07-b923-be0240e7b48d/download
echo "Downloading A2.h5..."
wget --content-disposition -O $dest/A2.h5 https://depositonce.tu-berlin.de/bitstreams/cbb462d7-cb28-4803-98d8-84b03aad0d5f/download
echo "Downloading D1.h5..."
wget --content-disposition -O $dest/D1.h5 https://depositonce.tu-berlin.de/bitstreams/86680ee5-ae0c-4b38-8ef8-805652a21ded/download
echo "Downloading R2.h5..."
wget --content-disposition -O $dest/R2.h5 https://depositonce.tu-berlin.de/bitstreams/0fc5f5a4-a2f7-4eb7-b796-7114260e5e86/download
echo "Downloading loudspeaker.h5..."
wget --content-disposition -O $dest/loudspeaker.h5 https://depositonce.tu-berlin.de/bitstreams/f16367cb-14cc-44f9-bb0b-9be3c33183d3/download