我在跑基本操作系统其中有一个已知问题Dropbox 图标不会显示在面板中。
Dropbox 运行得很好,只是没有图标我不知道如何检查我安装的版本。
我尝试使用命令行,但似乎没有可用的选项来显示版本:
Dropbox command-line interface
commands:
Note: use dropbox help <command> to view usage for a specific command.
status get current status of the dropboxd
help provide help
puburl get public url of a file in your dropbox
stop stop dropboxd
running return whether dropbox is running
start start dropboxd
filestatus get current sync status of one or more files
ls list directory contents with current sync status
autostart automatically start dropbox at login
exclude ignores/excludes a directory from syncing
lansync enables or disables LAN sync
我如何知道我正在运行哪个版本的 Dropbox?
答案1
应该有一个~/.dropbox-dist/VERSION
包含 Dropbox 版本的文件。请注意,它没有您期望的尾随换行符,因此您需要cat
像这样:
$ cat .dropbox-dist/VERSION ; echo
3.4.6
...否则 3.4.6 将最终运行到您的 shell 提示符中。