Using Web and CLI version together

It appears that the Web version uses the CLI version under the hood. Is it possible to do everything the Web version is doing from the CLI?

For example, in the Web version I have a backup with ID “turkey”. How do I find out the exact command it’s running, and how would I duplicate it from the command line?

You can find these lines in the main log file ~/.duplicacy-web/logs/duplicacy_web.log:

2019/12/03 11:00:01 Running /Users/gchen/.duplicacy-web/bin/duplicacy_osx_x64_2.2.3 [-log backup -storage sftp -stats]
2019/12/03 11:00:01 Set current working directory to /tmp/duplicacy/repositories/localhost/0

Thanks. So it looks to re-run that exact backup in your example I would just do:

cd /tmp/duplicacy/repositories/localhost/0
<duplicacy_cli> -log backup -storage sftp -stats

I could also run any other commands for that repository as long as I’m in that directory. Is that correct?

You’ll need to check your log to see which directory each command is run in. There might be different directories for different commands.