updated pod

This commit is contained in:
TLINDEN
2015-08-02 15:22:29 +02:00
parent 60bedf0c59
commit 12c2675e6a
2 changed files with 28 additions and 24 deletions

View File

@@ -133,7 +133,7 @@
.\" ========================================================================
.\"
.IX Title "DICEPWGEN 1"
.TH DICEPWGEN 1 "2015-08-01" "perl v5.18.2" "User Contributed Perl Documentation"
.TH DICEPWGEN 1 "2015-08-02" "perl v5.18.2" "User Contributed Perl Documentation"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
@@ -142,24 +142,26 @@
dicepwgen \- A diceware password generator
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 10
\& Usage: dice [\-cfvh]
\& Options:
\& \-t \-\-humantoss Asks interactively for tossed dices
\& \-c \-\-wordcount <count> Number of words (default: 4)
\& \-f \-\-dictfile <dictfile> Dictionary file to use (default:
\& /usr/share/dict/american\-english)
\& \-l \-\-minlen <count> Minimum word len (default: 5)
\& \-m \-\-maxlen <count> Maximum word len (default: 10)
\& \-v \-\-version Print program version
\& \-h \-? \-\-help Print this help screen
.Vb 11
\& Usage: dice [\-tcfvhd]
\& Options:
\& \-t \-\-humantoss Asks interactively for rolled dices
\& \-c \-\-wordcount <count> Number of words (default: 4)
\& \-f \-\-dictfile <dictfile> Dictionary file to use (default:
\& /usr/share/dict/american\-english)
\& \-l \-\-minlen <count> Minimum word len (default: 5)
\& \-m \-\-maxlen <count> Maximum word len (default: 10)
\& \-d \-\-debug Enable debug output
\& \-v \-\-version Print program version
\& \-h \-? \-\-help Print this help screen
.Ve
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
dicepwgen generates a diceware password using a dictionary
file. By default it uses pseudo random dice tosses, but
it is also possible to use real dices and enter the numbers
by using the option \fB\-t\fR.
by using the option \fB\-t\fR, which is the most secure way
to generate diceware passwords.
.PP
The option \fB\-c\fR can be used to tweak the number of words
to output. The options \fB\-l\fR and \fB\-m\fR can be used to tweak

View File

@@ -4,23 +4,25 @@ dicepwgen - A diceware password generator
=head1 SYNOPSIS
Usage: dice [-cfvh]
Options:
-t --humantoss Asks interactively for tossed dices
-c --wordcount <count> Number of words (default: 4)
-f --dictfile <dictfile> Dictionary file to use (default:
/usr/share/dict/american-english)
-l --minlen <count> Minimum word len (default: 5)
-m --maxlen <count> Maximum word len (default: 10)
-v --version Print program version
-h -? --help Print this help screen
Usage: dice [-tcfvhd]
Options:
-t --humantoss Asks interactively for rolled dices
-c --wordcount <count> Number of words (default: 4)
-f --dictfile <dictfile> Dictionary file to use (default:
/usr/share/dict/american-english)
-l --minlen <count> Minimum word len (default: 5)
-m --maxlen <count> Maximum word len (default: 10)
-d --debug Enable debug output
-v --version Print program version
-h -? --help Print this help screen
=head1 DESCRIPTION
dicepwgen generates a diceware password using a dictionary
file. By default it uses pseudo random dice tosses, but
it is also possible to use real dices and enter the numbers
by using the option B<-t>.
by using the option B<-t>, which is the most secure way
to generate diceware passwords.
The option B<-c> can be used to tweak the number of words
to output. The options B<-l> and B<-m> can be used to tweak