Skip to content

Instantly share code, notes, and snippets.

@ceccocats
Last active October 21, 2022 20:37
Show Gist options
  • Save ceccocats/b53a4e4c8364a33c62245942c1954c07 to your computer and use it in GitHub Desktop.
Save ceccocats/b53a4e4c8364a33c62245942c1954c07 to your computer and use it in GitHub Desktop.
Google drive download
#! /bin/bash
FILEID=$1
FILENAME=$2
wget --no-verbose --show-progress --progress=bar:force --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=$FILEID' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=$FILEID" -O $FILENAME && rm -rf /tmp/cookies.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment