Refactor: improve consistency of the term "directory".

This commit changes the term "folder" to "directory" in every
instance where the first is used in an example description, but the
second is used in the example code, and vice versa.
This commit is contained in:
Marco Bonelli
2019-02-08 01:28:43 +01:00
committed by Starbeamrainbowlabs
parent 77924e3ea0
commit ac4094e0ad
10 changed files with 15 additions and 15 deletions

View File

@@ -3,7 +3,7 @@
> Creates incremental, compressed, encrypted and versioned backups.
> Can also upload the backups to a variety of backend services.
- Backup a folder via FTPS to a remote machine, encrypting it with a password:
- Backup a directory via FTPS to a remote machine, encrypting it with a password:
`FTP_PASSWORD={{ftp_login_password}} PASSPHRASE={{encryption_password}} duplicity {{path/to/source/directory}} {{ftps://user@hostname/target/directory/path/}}`
@@ -25,4 +25,4 @@
- Restore a subdirectory from a GnuPG-encrypted local backup to a given location:
`PASSPHRASE={{gpg_key_password}} duplicity restore --encrypt-key {{gpg_key_id}} --file-to-restore {{relative/path/restorefolder}} file://{{absolute/path/to/backup/folder}} {{path/to/directory/to/restore/to}}`
`PASSPHRASE={{gpg_key_password}} duplicity restore --encrypt-key {{gpg_key_id}} --file-to-restore {{relative/path/restoredirectory}} file://{{absolute/path/to/backup/directory}} {{path/to/directory/to/restore/to}}`