我正在尝试使用unison和选项“-force”在可访问的ssh服务器上同步(即镜像)本地目录与远程的同步(即镜像),但是命令无法识别:
$ unison -force /home/localuser/test_sync ssh://anuser@192.168.1.111//home/anuser/test_sync
Usage: unison [options]
or unison root1 root2 [options]
or unison profilename [options]
For a list of options, type "unison -help". For a tutorial on basic usage, type "unison -doc tutorial". For other documentation, type "unison -doc topics".
尝试了多种变体,但似乎无法识别-force选项。 注意我想使用命令行而不为每个目录创建配置文件。
答案 0 :(得分:0)
ok发现-force必须在最后插入,重复必须镜像的路径:
unison /home/localuser/test_sync ssh://anuser@192.168.1.111//home/anuser/test_sync -force /home/localuser/test_sync