Skip to content

Instantly share code, notes, and snippets.

@djamol
Created October 29, 2022 14:36
Show Gist options
  • Save djamol/1818ab640ea69cdbc62b0f0cfb00ea2b to your computer and use it in GitHub Desktop.
Save djamol/1818ab640ea69cdbc62b0f0cfb00ea2b to your computer and use it in GitHub Desktop.
#!/bin/bash
fileid="FILEIDENTIFIER"
filename="FILENAME"
curl -c ./cookie -s -L "https://drive.google.com/uc?export=download&id=${fileid}" > /dev/null
curl -Lb ./cookie "https://drive.google.com/uc?export=download&confirm=`awk '/download/ {print $NF}' ./cookie`&id=${fileid}" -o ${filename}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment