gdrive_download

August 1, 2017 · View on GitHub

#!/usr/bin/env bash

gdrive_download

script to download Google Drive files from command line

not guaranteed to work indefinitely

taken from Stack Overflow answer:

http://stackoverflow.com/a/38937732/7002068

gURL=$1

match more than 26 word characters

ggID=(echo"(echo "gURL" | egrep -o '(\w|-){26,}')

ggURL='https://drive.google.com/uc?export=download'

curl -sc /tmp/gcokie "{ggURL}&id={ggID}" >/dev/null
getcode="(awk '/_warning_/ {print NF}' /tmp/gcokie)"

cmd='curl --insecure -C - -LOJb /tmp/gcokie "{ggURL}&confirm={getcode}&id=ggID"echoe"Downloadingfrom"{ggID}"' echo -e "Downloading from "gURL"...\n" eval $cmd