Deduplicating backup tool. Creates local or remote backups that are mountable as filesystems.
borg init {{/path/to/repo_folder}}
borg create --progress {{/path/to/repo_folder}}::{{Monday}} {{/path/to/source_folder}}
borg list {{/path/to/repo_folder}}
borg extract {{user}}@{{host}}:{{/path/to/repo_folder}}::{{Monday}} {{path/to/target_folder}} --exclude '{{*.ext}}'
borg prune --keep-within {{7d}} --list {{/path/to/repo_folder}}
borg mount {{/path/to/repo_folder}}::{{Monday}} {{/path/to/mountpoint}}
borg create --help