How to download dropbox files using command

From LemonWiki共筆
Revision as of 15:55, 2 June 2023 by Unknown user (talk) (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</...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

curl

Example command

curl "https://www.dropbox.com/s/some_hash_strings/file_name.pdf?dl=1" -L -o /path/to/pc/file_name.pdf

References