Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Term::ReadPassword::Win32 kills STDIN

by furry_marmot (Pilgrim)
on Feb 04, 2011 at 23:59 UTC ( [id://886322]=note: print w/replies, xml ) Need Help??


in reply to Term::ReadPassword::Win32 kills STDIN

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...

Replies are listed 'Best First'.
Re^2: Term::ReadPassword::Win32 kills STDIN
by Gulliver (Monk) on Feb 07, 2011 at 14:39 UTC
    Thanks! Have you considered putting this on cpan?
      This and several other solutions are addressed in perlfaq8. It turns out to be surprisingly platform-dependent.
Re^2: Term::ReadPassword::Win32 kills STDIN
by Anonymous Monk on Apr 20, 2017 at 13:25 UTC

    On Linux, you also need to check for \n, not only \r


    if(ord($key) == 13 || ord($key) == 10) { # if Enter was pressed...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://886322]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (7)
As of 2024-04-23 13:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found