Forrest logo
back to context overview

borg

List of commands for borg:

  • borg:tldr:0e248 borg: Prune a repository by deleting all archives older than 7 days, listing changes.
    $ borg prune --keep-within ${7d} --list ${path-to-repo_directory}
    try on your machine
    explain this command
  • borg:tldr:4fcf9 borg: Initialize a (local) repository.
    $ borg init ${path-to-repo_directory}
    try on your machine
    explain this command
  • borg:tldr:5353b borg: List all archives in a repository.
    $ borg list ${path-to-repo_directory}
    try on your machine
    explain this command
  • borg:tldr:b8a44 borg: Extract a specific directory from the "Monday" archive in a remote repository, excluding all `*.ext` files.
    $ borg extract ${user}@${host}:${path-to-repo_directory}::${Monday} ${path-to-target_directory} --exclude '${*-ext}'
    try on your machine
    explain this command
  • borg:tldr:c4300 borg: Mount a repository as a FUSE filesystem.
    $ borg mount ${path-to-repo_directory}::${Monday} ${path-to-mountpoint}
    try on your machine
    explain this command
  • borg:tldr:e43ad borg: Display help on creating archives.
    $ borg create --help
    try on your machine
    explain this command
  • borg:tldr:e8c16 borg: Backup a directory into the repository, creating an archive called "Monday".
    $ borg create --progress ${path-to-repo_directory}::${Monday} ${path-to-source_directory}
    try on your machine
    explain this command
back to context overview