Skip to content

Instantly share code, notes, and snippets.

@papachristoumarios
Created July 24, 2019 15:20
Show Gist options
  • Save papachristoumarios/7121a2c7971028dee448f8c4e843e4a3 to your computer and use it in GitHub Desktop.
Save papachristoumarios/7121a2c7971028dee448f8c4e843e4a3 to your computer and use it in GitHub Desktop.
Download from Google Drive via terminal
#!/bin/bash
# Usage download_gdrive.sh file_id outfile
CONFIRM=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate "https://docs.google.com/uc?export=download&id=$1" -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=$1" -O $2
rm -rf /tmp/cookies.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment