http://www.perlmonks.org?node_id=94503


in reply to cpan warnings

I noticed this too. The fix is simple enough though. Just edit /etc/inputrc -- the first few lines currently look like this:
set meta-flag on set input-meta on set convert-meta off set output-meta on
All you have to do is change the first character of the words on/off to be uppercase like so:
set meta-flag On set input-meta On set convert-meta Off set output-meta On
Thats it!
-Eric