- Download a file from gDrive using
gdown
by using thefile id
:
gdown <file_id> --output "some.dmg"
- Download a file using
wget
from Dropbox by changingdl=0
todl=1
at the end of the shared link:
wget -O "file_name.dmg" "https://www.dropbox.com/s/<random_numbers>.dmg?dl=1"
- Download a file using
curl
from Dropbox by changingdl=0
todl=1
at the end of the shared link:
curl -L -o "file_name.dmg" "https://www.dropbox.com/s/<random_numbers>.dmg?dl=1"