I am looking for something that has an usage like

passgen <length> <charset>
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Cross-Platform: Using PERL

There's a PERL password generator that works for Windows, *nix, OS X, etc.

Usage: genpass [-OPTIONS] LENGTH
-s, --symbols       Exclude symbol characters.
-n, --numbers       Exclude number characters.
-u, --uppercase     Exclude uppercase characters.
-l, --lowercase     Exclude lowercase characters.

On Windows, it can be converted into an executable.

Windows-only

Not specifically what you want, but could also come in useful. In the command line, type:

net user administrator /random    

enter image description here

Unix/Linux

See answers of this question: Random password generator: many, in columns, on command line, in Linux

link|improve this answer
search.cpan.org/~rschupp/PAR-Packer-1.009/lib/pp.pm, converts a perl script to an executable. So problem solved. – johnthexiii May 9 '11 at 11:28
@johnthexiii Oh, nice. I added it to the answer for later reference. – slhck May 9 '11 at 11:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.