Skip to content

Instantly share code, notes, and snippets.

@mgbckr
Created June 16, 2022 22:16
Show Gist options
  • Save mgbckr/3a27727d37a4c4f47bc2c0d170b328fb to your computer and use it in GitHub Desktop.
Save mgbckr/3a27727d37a4c4f47bc2c0d170b328fb to your computer and use it in GitHub Desktop.
# source: https://bcrf.biochem.wisc.edu/2021/02/05/download-google-drive-files-using-wget/
download() {
FILEID=$1
OUT=$2
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')
wget --load-cookies ./tmp-cookies.txt "https://docs.google.com/uc?export=download&confirm=${confirm}&id=${FILEID}" -O ${OUT}
rm -rf ./tmp-cookies.txt
}
# Download: https://drive.google.com/file/d/17QvQyFrP7EZFHgrCOhjbUpcDiaUID3i9/view?usp=sharing
download 17QvQyFrP7EZFHgrCOhjbUpcDiaUID3i9 file.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment