Hey all,
I wrote a shell script to download some files for EPG information. A file must be downloaded from a google drive
Therefore I tried out the following possibilities:
curl -L -o guide.xml "https://docs.google.com/uc?export=download&id=[FILE_ID]"
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=[FILE_ID]' -O guide.xml
If the script is executed manually in the terminal, both options works fine.
However, if the script is executed via crontab, all sources will be downloaded, just not the file from googeldirve!?
Anybody got an idea to fix it?
Okay, i have it....
the local path must be specified