Forrest logo
back to context overview

bup

List of commands for bup:

  • bup:ai:1aa16 Initialize a new bup repository with encryption enabled
    $ bup init -n -C ${path-to-directory}
    try on your machine
    explain this command
  • bup:ai:31f87 Creates an encrypted backup using bup
    $ bup save -n ${backup-name} -e ${encryption-key} -r ${repository-path} ${path-to-backup}
    try on your machine
    explain this command
  • bup:ai:9d8b8 How to use encryption with the bup backup
    $ bup init -c repo_name
    try on your machine
    explain this command
  • bup:tldr:34d74 bup: Prepare a given directory before taking a backup.
    $ bup -d ${path-to-repository} index ${path-to-directory}
    try on your machine
    explain this command
  • bup:tldr:47e3f bup: Restore a specific backup snapshot to a target directory.
    $ bup -d ${path-to-repository} restore -C ${path-to-target_directory} ${backup_name}
    try on your machine
    explain this command
  • bup:tldr:6330a bup: Show the backup snapshots currently stored in the repository.
    $ bup -d ${path-to-repository} ls
    try on your machine
    explain this command
  • bup:tldr:ca2fb bup: Initialize a backup repository in the specified local directory.
    $ bup -d ${path-to-repository} init
    try on your machine
    explain this command
  • bup:tldr:d6a72 bup: Backup a directory to the repository.
    $ bup -d ${path-to-repository} save -n ${backup_name} ${path-to-directory}
    try on your machine
    explain this command
back to context overview