fix typos and formatting

This commit is contained in:
Thomas von Dein
2024-12-23 23:51:17 +01:00
parent 8a8888a3cf
commit 33d638aff0

View File

@@ -133,7 +133,7 @@ You might as well specify a file directly using the C<-f> option:
Values can be encrypted using B<ChaCha20Poly1305> 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<ANYDB_PASSWORD>. 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<ANYDB_PASSWORD> 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<list>
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<export> subcommand.
@@ -444,10 +444,15 @@ The following template variables can be used:
=over
=item B<Key> - string
=item B<Value> - string
=item B<Bin> - []byte
=item B<Created> - time.Time
=item B<Tags> - []string
=item B<Encrypted> 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<https://toml.io/en/> for more details. The key names correspond to
the commandline options in most cases.