使用Dropbox GUI,可以专门控制要同步的文件夹。可以通过命令行完成吗?
背景:我正在尝试在此处提供的在Linux服务器上安装Dropbox的解决方案,并且看来工作正常:http : //ubuntuservergui.com/ubuntu-server-guide/install-dropbox-ubuntu-server
使用Dropbox GUI,可以专门控制要同步的文件夹。可以通过命令行完成吗?
背景:我正在尝试在此处提供的在Linux服务器上安装Dropbox的解决方案,并且看来工作正常:http : //ubuntuservergui.com/ubuntu-server-guide/install-dropbox-ubuntu-server
Answers:
官方的Dropbox CLI具有排除选项。
在Linux上,Dropbox具有一个客户端(dropbox
)和一个守护进程(dropboxd
)。
客户端具有exclude
命令,您可以使用该命令排除目录。例如,要从Dropbox中排除node_modules,可以输入dropbox exclude add ./node_modules
dropbox help exclude
将打印帮助信息:
dropbox exclude [list]
dropbox exclude add [DIRECTORY] [DIRECTORY] ...
dropbox exclude remove [DIRECTORY] [DIRECTORY] ...
"list" prints a list of directories currently excluded from syncing.
"add" adds one or more directories to the exclusion list, then resynchronizes Dropbox.
"remove" removes one or more directories from the exclusion list, then resynchronizes Dropbox.
With no arguments, executes "list".
Any specified path must be within Dropbox.
想象一下Dropbox根目录上名为“ YOURFOLDER”的文件夹
1-提示: cd ~/Dropbox
2-按Enter
3-提示: dropbox exclude add ~/Dropbox/YOURFOLDER
4-按Enter
确认
1-小费: dropbox exclude list
2-按Enter
将显示排除文件夹的列表:
排除:../../../ root / Dropbox / YOURFOLDER
这将从2016年的图片库中查找和排除文件夹“ .llgal”:
dropbox exclude add $(find /home/dcp/Dropbox/Galeria_Fotos/2016/ -iname \.llgal | tr '\n' ' ')
我知道这不是您要求的,但也许可以帮助其他人。
我正在寻找像修改保管箱数据库之类的解决方案,因为我也有保管箱繁忙的问题。
问候
tr '\n' ' '
在这种情况下,目的是什么?