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" .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 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents. .\" way too many mistakes in technical documents.
.if n .ad l .if n .ad l
@@ -142,15 +142,16 @@
dicepwgen \- A diceware password generator dicepwgen \- A diceware password generator
.SH "SYNOPSIS" .SH "SYNOPSIS"
.IX Header "SYNOPSIS" .IX Header "SYNOPSIS"
.Vb 10 .Vb 11
\& Usage: dice [\-cfvh] \& Usage: dice [\-tcfvhd]
\& Options: \& Options:
\& \-t \-\-humantoss Asks interactively for tossed dices \& \-t \-\-humantoss Asks interactively for rolled dices
\& \-c \-\-wordcount <count> Number of words (default: 4) \& \-c \-\-wordcount <count> Number of words (default: 4)
\& \-f \-\-dictfile <dictfile> Dictionary file to use (default: \& \-f \-\-dictfile <dictfile> Dictionary file to use (default:
\& /usr/share/dict/american\-english) \& /usr/share/dict/american\-english)
\& \-l \-\-minlen <count> Minimum word len (default: 5) \& \-l \-\-minlen <count> Minimum word len (default: 5)
\& \-m \-\-maxlen <count> Maximum word len (default: 10) \& \-m \-\-maxlen <count> Maximum word len (default: 10)
\& \-d \-\-debug Enable debug output
\& \-v \-\-version Print program version \& \-v \-\-version Print program version
\& \-h \-? \-\-help Print this help screen \& \-h \-? \-\-help Print this help screen
.Ve .Ve
@@ -159,7 +160,8 @@ dicepwgen \- A diceware password generator
dicepwgen generates a diceware password using a dictionary dicepwgen generates a diceware password using a dictionary
file. By default it uses pseudo random dice tosses, but file. By default it uses pseudo random dice tosses, but
it is also possible to use real dices and enter the numbers 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 .PP
The option \fB\-c\fR can be used to tweak the number of words 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 to output. The options \fB\-l\fR and \fB\-m\fR can be used to tweak

View File

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