in reply to General quesion
#!/usr/bin/perl -w use strict; my(@array) = ('a'..'z',0..9); my($pass); for(1..8) { $pass .= $array[int(rand(scalar(@array)))]; } print $pass; exit();
/****************************/ jason@gost.net, wh@ckz.org http://jason.gost.net /*****************************/
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: General quesion
by merlyn (Sage) on Aug 08, 2000 at 16:41 UTC | |
by lindex (Friar) on Aug 08, 2000 at 16:53 UTC |