Skip to content

Instantly share code, notes, and snippets.

@bkj
Last active March 12, 2020 14:41
Show Gist options
  • Save bkj/cf0d8a213eb9159c04558b0e26923a8c to your computer and use it in GitHub Desktop.
Save bkj/cf0d8a213eb9159c04558b0e26923a8c to your computer and use it in GitHub Desktop.
function download_google_drive {
SRC=$1
DST=$2
echo "$SRC -> $DST"
curl -c /tmp/cookies "https://drive.google.com/uc?export=download&id=$SRC" > /tmp/intermezzo.html
DL_LINK=$(cat /tmp/intermezzo.html |\
grep -Po 'uc-download-link" [^>]* href="\K[^"]*' |\
sed 's/\&/\&/g'
)
curl -L -b /tmp/cookies https://drive.google.com$DL_LINK > $DST
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment