Hi guys, I am writing a script where a user is prompted for password. However, I do not wish to have the program display his/her password. Is there a way to do this?
here's my code
#code begins#
$i=-1;
do{
$i++;
print 'please enter password: ';
chomp($input=<STDIN>);
}until (!$i);
#end code#
thanks
Eric
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
