Официальный Dropbox CLI имеет опцию исключения .
В Linux Dropbox есть клиент ( dropbox
) и deamon ( dropboxd
).
У клиента есть exclude
команда, которую вы можете использовать для исключения каталогов. Например, чтобы исключить node_modules из Dropbox, вы можете ввести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.