123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- .. _usage_attic_change-passphrase:
- attic change-passphrase
- ~~~~~~~~~~~~~~~~~~~~~~~
- ::
- usage: attic change-passphrase [-h] [-v] repository
- Change passphrase on repository key file
- positional arguments:
- repository
- optional arguments:
- -h, --help show this help message and exit
- -v, --verbose verbose output
- .. _usage_attic_create:
- attic create
- ~~~~~~~~~~~~
- ::
- usage: attic create [-h] [-v] [-s] [-e PATTERN] [-c SECONDS]
- [--do-not-cross-mountpoints] [--numeric-owner]
- ARCHIVE PATH [PATH ...]
- Create new archive
- positional arguments:
- ARCHIVE archive to create
- PATH paths to archive
- optional arguments:
- -h, --help show this help message and exit
- -v, --verbose verbose output
- -s, --stats print statistics for the created archive
- -e PATTERN, --exclude PATTERN
- exclude paths matching PATTERN
- -c SECONDS, --checkpoint-interval SECONDS
- write checkpointe ever SECONDS seconds (Default: 300)
- --do-not-cross-mountpoints
- do not cross mount points
- --numeric-owner only store numeric user and group identifiers
- .. _usage_attic_delete:
- attic delete
- ~~~~~~~~~~~~
- ::
- usage: attic delete [-h] [-v] ARCHIVE
- Delete archive
- positional arguments:
- ARCHIVE archive to delete
- optional arguments:
- -h, --help show this help message and exit
- -v, --verbose verbose output
- .. _usage_attic_extract:
- attic extract
- ~~~~~~~~~~~~~
- ::
- usage: attic extract [-h] [-v] [-e PATTERN] [--numeric-owner]
- ARCHIVE [PATH [PATH ...]]
- Extract archive contents
- positional arguments:
- ARCHIVE archive to extract
- PATH paths to extract
- optional arguments:
- -h, --help show this help message and exit
- -v, --verbose verbose output
- -e PATTERN, --exclude PATTERN
- exclude paths matching PATTERN
- --numeric-owner only obey numeric user and group identifiers
- .. _usage_attic_init:
- attic init
- ~~~~~~~~~~
- ::
- usage: attic init [-h] [-v] [--key-file] [--passphrase] repository
- Initialize a new repository
- positional arguments:
- repository repository to create
- optional arguments:
- -h, --help show this help message and exit
- -v, --verbose verbose output
- --key-file enable key file based encryption
- --passphrase enable passphrase based encryption
- .. _usage_attic_mount:
- attic mount
- ~~~~~~~~~~~
- ::
- usage: attic mount [-h] [-v] [-f] [-o OPTIONS] ARCHIVE MOUNTPOINT
- Mount archive as a FUSE fileystem
- positional arguments:
- ARCHIVE archive to mount
- MOUNTPOINT where to mount filesystem
- optional arguments:
- -h, --help show this help message and exit
- -v, --verbose verbose output
- -f, --foreground stay in foreground, do not daemonize
- -o OPTIONS Extra mount options
- .. _usage_attic_prune:
- attic prune
- ~~~~~~~~~~~
- ::
- usage: attic prune [-h] [-v] [-H HOURLY] [-d DAILY] [-w WEEKLY] [-m MONTHLY]
- [-y YEARLY] [-p PREFIX]
- REPOSITORY
- Prune repository archives according to specified rules
- positional arguments:
- REPOSITORY repository to prune
- optional arguments:
- -h, --help show this help message and exit
- -v, --verbose verbose output
- -H HOURLY, --hourly HOURLY
- number of hourly archives to keep
- -d DAILY, --daily DAILY
- number of daily archives to keep
- -w WEEKLY, --weekly WEEKLY
- number of daily archives to keep
- -m MONTHLY, --monthly MONTHLY
- number of monthly archives to keep
- -y YEARLY, --yearly YEARLY
- number of yearly archives to keep
- -p PREFIX, --prefix PREFIX
- only consider archive names starting with this prefix
- .. _usage_attic_verify:
- attic verify
- ~~~~~~~~~~~~
- ::
- usage: attic verify [-h] [-v] [-e PATTERN] ARCHIVE [PATH [PATH ...]]
- Verify archive consistency
- positional arguments:
- ARCHIVE archive to verity integrity of
- PATH paths to verify
- optional arguments:
- -h, --help show this help message and exit
- -v, --verbose verbose output
- -e PATTERN, --exclude PATTERN
- exclude paths matching PATTERN
|