Skip to content

Instantly share code, notes, and snippets.

View IlnarSelimcan's full-sized avatar

Ilnar Salimzianov IlnarSelimcan

View GitHub Profile
## Given Google Drive file id and the filename that it should be saved as, fetch and save.
fileid="$1"
filename="$2"
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}