有一个命令行界面 (cli) 可以从控制台运行 dropbox。有没有关于如何使用它的教程或指南?
答案1
要使用 Dropbox Uploader,请下载脚本并使其可执行。
$ wget https://raw.github.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh
$ chmod +x dropbox_uploader.sh
列出顶级目录中的所有内容:
$ ./dropbox_uploader.sh list
列出特定文件夹中的所有内容:
$ ./dropbox_uploader.sh list Documents/manuals
要将本地文件上传到远程 Dropbox 文件夹:
$ ./dropbox_uploader.sh upload snort.pdf Documents/manuals
要将远程文件从 Dropbox 下载到本地文件:
$ ./dropbox_uploader.sh download Documents/manuals/mysql.pdf ./mysql.pdf
要将整个远程文件夹从 Dropbox 下载到本地文件夹:
$ ./dropbox_uploader.sh download Documents/manuals ./manuals
要在 Dropbox 上创建新的远程文件夹:
$ ./dropbox_uploader.sh mkdir Documents/whitepapers
要删除 Dropbox 上的整个远程文件夹(包括其所有内容):
$ ./dropbox_uploader.sh delete Documents/manuals
您可以查看此网站:
这也许有帮助。
答案2
man dropbox
是的,安装后可以在终端中使用。虽然它确实提到
In the future there will be full command line support including linking
accounts and setting preferences from the dropbox command.
所以我不确定您是否可以通过命令行完成所有操作。