in reply to Re: Undefined subroutine
in thread Undefined subroutine
where ReadMode is a subroutine in the Term::ReadKey module.#! /use/bin/perl use strict; use Term::ReadKey; ReadMode( "noecho"); print "Enter pwd please :"; chomp (my $pwd = <>); ReadMode ("original") ; print "\nYou typed $pwd!\n";
|
|---|