download file from google drive terminal code example

Example 1: command line download file from google drive

$ wget "https://drive.google.com/uc?export=download&id=<fileId>" -O <fileName>

Example 2: download from google drive in terminal

wget --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

Tags:

Go Example