@jkandasa
I created a googledrive download script!, maybe it is usefull for you
#!/bin/sh
if [ "$#" -ne 2 ] ; then
clear
echo "Usage ./get-googledrive doc-id filename"
echo "Where the doc-id is the number presented on the share link in google drive"
exit 1
fi
echo
echo '-----------------------------------------------------------------------'
echo 'Getting doc-id : ' $1
echo 'Saving to filename : ' $2
echo '-----------------------------------------------------------------------'
echo
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id='$1 -O $2
(not sure if the doc-id changes once you post a new version.....)