You could also just use Term::ReadKey. I've used it on Win2k, XP, and Vista. It's clumsy to use, but I stuffed it into a utility module I use, like so:
my $pword = get_pword( "Enter password" );
print "Password is '$pword'\n";
sub get_pword {
use Term::ReadKey;
my ($prompt) = shift;
my $pword;
my $key;
local $| = 1; # Turn off STDOUT buffering for immediate response
print "$prompt: ";
ReadMode 4; # Change to Raw Mode, disable Ctrl-C
while( 1 ) {
while (not defined ($key = ReadKey(-1))) { }
if(ord($key) == 13) { # if Enter was pressed...
print "\n"; # print a newline
last; # and get out of here
}
print '*';
$pword .= $key;
}
ReadMode 0; # Reset tty mode before exiting. <==IMPORTANT
return $pword;
}
Also, Term::ReadKey comes standard with Perl.
--marmot
UPDATE: Fixed a sorta bug. Accidentally introduced an extraneous while loop when I copied the code. Didn't hurt anything but my pride...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.