Alexander Filёv Asked: 2014-12-11 01:07:18 +0800 CST2014-12-11 01:07:18 +0800 CST 2014-12-11 01:07:18 +0800 CST how to using dropbox-cli? 772 There is a command-line-interface (cli) to run dropbox from the console. Is there any tutorial or guide on how to use it? command-line 2 Answers Voted Best Answer nux 2014-12-11T01:12:40+08:002014-12-11T01:12:40+08:00 To use Dropbox Uploader, download the script and make it executable. $ wget https://raw.github.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh $ chmod +x dropbox_uploader.sh To list all contents in the top-level directory: $ ./dropbox_uploader.sh list To list all contents in a specific folder: $ ./dropbox_uploader.sh list Documents/manuals To upload a local file to a remote Dropbox folder: $ ./dropbox_uploader.sh upload snort.pdf Documents/manuals To download a remote file from Dropbox to a local file: $ ./dropbox_uploader.sh download Documents/manuals/mysql.pdf ./mysql.pdf To download an entire remote folder from Dropbox to a local folder: $ ./dropbox_uploader.sh download Documents/manuals ./manuals To create a new remote folder on Dropbox: $ ./dropbox_uploader.sh mkdir Documents/whitepapers To delete an entire remote folder (including all its contents) on Dropbox: $ ./dropbox_uploader.sh delete Documents/manuals You can check this site : Site It may be helpful . Xen2050 2014-12-11T01:12:50+08:002014-12-11T01:12:50+08:00 Yes, sort of, it's available in a terminal with man dropbox after you've installed it. Though it does mention In the future there will be full command line support including linking accounts and setting preferences from the dropbox command. So I'm not sure if you can do absolutely everything from the command line.
To use Dropbox Uploader, download the script and make it executable.
To list all contents in the top-level directory:
To list all contents in a specific folder:
To upload a local file to a remote Dropbox folder:
To download a remote file from Dropbox to a local file:
To download an entire remote folder from Dropbox to a local folder:
To create a new remote folder on Dropbox:
To delete an entire remote folder (including all its contents) on Dropbox:
You can check this site :
Site
It may be helpful .
Yes, sort of, it's available in a terminal with
man dropbox
after you've installed it. Though it does mentionSo I'm not sure if you can do absolutely everything from the command line.