in reply to Portably prompting for passwords

Heres a solution from the Perl Cookbook which uses Term::ReadKey

use Term::ReadKey; ReadMode 'noecho'; my $password = ReadLine 0;

--
my $chainsaw = 'Perl';