I have a Perl script that requires the user to enter a password. How can I echo only '*' in place of the character that the user types, as they type it?
I'm using Windows XP/Vista.
|
|
|
You can play with Term::ReadKey. Here is a very simple example, with some detection for backspace and delete key. I've tested it on Mac OS X 10.5 but according to the ReadKey manual it should work under Windows. The manual indicates that under Windows using non-blocking reads (
|
|||||||||||||||
|
|
In the past I have used IO::Prompt for this.
|
|||
|
|
|
If you don't want use any packages... Only for UNIX
|
|||
|
|
|
You should take a look at either Term::ReadKey or Win32::Console. You can use those modules to read the single key strokes and emit '*' or whathever. |
|||
|
|
|
Building on Pierr-Luc's program, just added some control on the backslashes. With this, you can't keep pressing backslash forever:
|
||||
|
|
|
Have you tried storing the string (so that your program can still read it) and find out its length then create a string of the same length, but only use '*'? |
|||
|
|