This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Get files from Google Drive | |
# Source: https://stackoverflow.com/a/50573452/2382312 | |
# Usage: download_gdrive FILE_ID DESTINATION_PATH | |
# $1 = file ID | |
# $2 = file name | |
URL="https://drive.google.com/uc?export=download&id=$1" |