Created
June 16, 2022 22:16
-
-
Save mgbckr/3a27727d37a4c4f47bc2c0d170b328fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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