car-detection-bayes/data/get_coco_dataset_gdrive.sh

16 lines
617 B
Bash
Raw Normal View History

2019-06-30 23:27:32 +00:00
#!/bin/bash
# https://stackoverflow.com/questions/48133080/how-to-download-a-google-drive-url-via-curl-or-wget/48133859
2019-07-10 10:00:06 +00:00
# Set fileid and filename
filename="coco.zip"
fileid="1HaXkef9z6y5l4vUnCYgdmEAj61c6bfWO" # coco2014.zip
# Download from Google Drive, accepting presented query
2019-06-30 23:27:32 +00:00
curl -c ./cookie -s -L "https://drive.google.com/uc?export=download&id=${fileid}" > /dev/null
curl -Lb ./cookie "https://drive.google.com/uc?export=download&confirm=`awk '/download/ {print $NF}' ./cookie`&id=${fileid}" -o ${filename}
2019-07-10 10:00:06 +00:00
rm ./cookie
2019-06-30 23:27:32 +00:00
# Unzip
2019-07-10 15:33:24 +00:00
unzip -q ${filename} # for coco.zip
# tar -xzf ${filename} # for coco.tar.gz