You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
331 B
Perl

#!/usr/local/bin/perl -w
use Getopt::Long;
GetOptions ('l|length=i');
my $length = $opt_l || 8;
my $password = "";
my $x = 0;
srand (time|$$);
for ($x=0; $x < $length; $x++){
my $intval = 50;
$password .= sprintf ("%c", $intval);
}
print "Password $password \n";