Вы можете играть с Term :: ReadKey. Вот очень простой пример с некоторым обнаружением возврата и удаления ключа. Я протестировал его на Mac OS X 10.5, но согласно руководству ReadKey он должен работать под Windows. руководство указывает, что под Windows использование неблокирующих операций чтения (ReadKey(-1)
) завершится неудачей. Вот почему я использую ReadKey (0), который в основном getc
(подробнее о getc в руководстве libc ).
#!/usr/bin/perl
use strict;
use warnings;
use Term::ReadKey;
my $key = 0;
my $password = "";
print "\nPlease input your password: ";
# Start reading the keys
ReadMode(4); #Disable the control keys
while(ord($key = ReadKey(0)) != 10)
# This will continue until the Enter key is pressed (decimal value of 10)
{
# For all value of ord($key) see http://www.asciitable.com/
if(ord($key) == 127 || ord($key) == 8) {
# DEL/Backspace was pressed
#1. Remove the last char from the password
chop($password);
#2 move the cursor back by one, print a blank character, move the cursor back by one
print "\b \b";
} elsif(ord($key) < 32) {
# Do nothing with these control characters
} else {
$password = $password.$key;
print "*(".ord($key).")";
}
}
ReadMode(0); #Reset the terminal once we are done
print "\n\nYour super secret password is: $password\n";