How to download dropbox files using command: Difference between revisions
Jump to navigation
Jump to search
(Created page with "How to download dropbox files using Wget or cUrl command == Tips == * Replace the Dropbox URL parameter from {{kbd|key=<nowiki>?dl=0</nowiki>}} with {{kbd|key=<nowiki>?dl=1</...") |
(No difference)
|
Revision as of 15:55, 2 June 2023
How to download dropbox files using Wget or cUrl command
Tips
- Replace the Dropbox URL parameter from ?dl=0 with ?dl=1
Using Wget command
Wget - GNU Project - Free Software Foundation
example command
wget -O /path/to/pc/file_name.pdf "https://www.dropbox.com/s/some_hash_strings/file_name.pdf?dl=1"
Using cUrl command
Example command
curl "https://www.dropbox.com/s/some_hash_strings/file_name.pdf?dl=1" -L -o /path/to/pc/file_name.pdf