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 | |
read -p "Enter File Id: " fileid | |
read -e -p "Enter File Dir: " "path_to_download_dir" dir #replce with your download dir path ~/Downloads | |
cd ~/$dir | |
echo "File will be downloaded in dir: ~/{$dir}" | |
curl -c ./$fileid -s -L "https://drive.google.com/uc?export=download&id=${fileid}" > /dev/null |