Skip to content

Instantly share code, notes, and snippets.

@mrfunctionC3
Last active August 4, 2020 08:11
Show Gist options
  • Save mrfunctionC3/6d7ca76fcfee60a6c8b9ef71d4685b3a to your computer and use it in GitHub Desktop.
Save mrfunctionC3/6d7ca76fcfee60a6c8b9ef71d4685b3a to your computer and use it in GitHub Desktop.
download gdrive file
#!/bin/bash
fileid=$1
filename=$2
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