Add a command to generate pass
This commit is contained in:
parent
01e723db5e
commit
5aecf8b8b1
1 changed files with 14 additions and 0 deletions
14
commands/gen_pass.pl
Normal file
14
commands/gen_pass.pl
Normal file
|
@ -0,0 +1,14 @@
|
|||
#! /usr/bin/env perl
|
||||
|
||||
use v5.10.1;
|
||||
use strict;
|
||||
use warnings;
|
||||
use Pod::Usage;
|
||||
|
||||
BEGIN {
|
||||
push @INC, "../";
|
||||
}
|
||||
|
||||
use ACU::Password;
|
||||
|
||||
say Password::gen_password($ARGV[0], $ARGV[1]);
|
Reference in a new issue