Welcome to the MacOSX.com Perl Association. This iss where you get to post your perl scripts.
Here is one of mine:
#!/usr/bin/perl
#
# rpass - random password generator
#
# by xoot
use strict;
srand;
my ($password, @chars, $length);
@chars = ('a', 'b', 'c', 'd', 'e', 'f', 'g'...