Spaces:
Running
on
Zero
Running
on
Zero
File size: 301 Bytes
a45988a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/usr/bin/env bash
set -e
set -x
data_dir=data
mkdir -p $data_dir
cd $data_dir
if test -f "samples.tar" ; then
echo "Tar file exists: samples.tar"
exit 1
fi
wget -nv --show-progress https://share.phys.ethz.ch/~pf/bingkedata/rollingdepth/data/samples.tar
tar -xf samples.tar
rm samples.tar |