From 33d638aff07554aa9aa267b601125c730f908b8a Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Mon, 23 Dec 2024 23:51:17 +0100 Subject: [PATCH] fix typos and formatting --- anydb.pod | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/anydb.pod b/anydb.pod index 0e626c5..9b55677 100644 --- a/anydb.pod +++ b/anydb.pod @@ -133,7 +133,7 @@ You might as well specify a file directly using the C<-f> option: Values can be encrypted using B when you specify the C<-e> option. Anydb will ask you interactively for a passphrase. You -might as well provide the passphrase using the environment variable +can also provide the passphrase using the environment variable C. To encrypt the value, a cryptographically secure key will be derived from the passphrase using the ArgonID2 algorithm. Each value can be encrypted with another passphrase. So, @@ -189,7 +189,7 @@ If the value is encrypted, you will be asked for the passphrase to decrypt it. If the environment variable C is set, its value will be used instead. -There are different output modes you can choos from: simple, wide and +There are different output modes you can choose from: simple, wide and json. The "simple" mode is the default one, it just prints the value as is. The "wide" mode prints a tabular output similar to the B subcommand, see there for more details. The options C<-n> and C<-N> @@ -315,7 +315,7 @@ Please note, that this does not work with binary content! =head2 export -Since the bbold database file is not portable across platforms (it is +Since the bbolt database file is not portable across platforms (it is bound to the endianess of the CPU it was being created on), you might want to create a backup file of your database. You can do this with the B subcommand. @@ -444,10 +444,15 @@ The following template variables can be used: =over =item B - string + =item B - string + =item B - []byte + =item B - time.Time + =item B - []string + =item B bool =back @@ -473,7 +478,7 @@ Print the values in CSV format ONLY if they have some tag: =head1 CONFIGURATION -Anydb looks at the following location for a configuration file, in +Anydb looks at the following locations for a configuration file, in that order: =over @@ -486,6 +491,8 @@ that order: =item or specify one using C<-c> +=back + The configuration format uses the TOML language, refer to L for more details. The key names correspond to the commandline options in most cases.