Skip to content

Instantly share code, notes, and snippets.

@emrectn
Created July 22, 2020 08:20
Show Gist options
  • Select an option

  • Save emrectn/4a1a013d8bece0fc183a3b4f5be6af7b to your computer and use it in GitHub Desktop.

Select an option

Save emrectn/4a1a013d8bece0fc183a3b4f5be6af7b to your computer and use it in GitHub Desktop.
#!/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}
remove cookie
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment