Spaces:
Runtime error
Runtime error
File size: 354 Bytes
660acc7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/usr/bin/env bash
set -e
set -x
data_dir=input
mkdir -p $data_dir
cd $data_dir
if test -f "in-the-wild_example.tar" ; then
echo "Tar file exists: in-the-wild_example.tar"
exit 1
fi
wget -nv --show-progress https://share.phys.ethz.ch/~pf/bingkedata/marigold/in-the-wild_example.tar
tar -xf in-the-wild_example.tar
rm in-the-wild_example.tar
|