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


In reply to Re: Term::ReadPassword::Win32 kills STDIN by furry_marmot
in thread Term::ReadPassword::Win32 kills STDIN by Gulliver

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.