Skip to content

Instantly share code, notes, and snippets.

@startergo
Last active July 23, 2023 15:40
Show Gist options
  • Save startergo/6b2aac57dcde1a006eb03cb230cafc1d to your computer and use it in GitHub Desktop.
Save startergo/6b2aac57dcde1a006eb03cb230cafc1d to your computer and use it in GitHub Desktop.
Download a file with wget, curl or gdown to bypass quarantine flag in macOS
  • Download a file from gDrive using gdown by using the file id:
gdown <file_id> --output "some.dmg"
  • Download a file using wget from Dropbox by changing dl=0 to dl=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 changing dl=0 to dl=1 at the end of the shared link:
curl -L -o "file_name.dmg" "https://www.dropbox.com/s/<random_numbers>.dmg?dl=1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment