[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: (OT-perl) read from stdin without echoing (fwd)



once Raffaele Sandrini <maturarbeit@gmx.ch> wrote:
> Hi
>
> Wich commands do i have to use to read from the console (STDIN) witchout the
> chars getting writed to the console like in a password entry?
>
> cheers,
> Raffaele
>
> --
> GMX - Die Kommunikationsplattform im Internet.
> http://www.gmx.net
from the cookbook:
use Term:ReadKey;

ReadMode('noecho');
$passwd=ReadLine(0);




Reply to: