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

gargle has asked for the wisdom of the Perl Monks concerning the following question:

Now this is weird! I have the following code:
[gargle@vlds204 reporting]$ cat ./test.pl #!/usr/bin/perl use Modern::Perl; use Term::Prompt; my $mypass = prompt( 'x', "password:", '', '' ); say "alfa"; say "beta";
When I run this on stdout, I get this:
[gargle@vlds204 reporting]$ ./test.pl password: x alfa beta
When I pipe into a text file (or use redirection) I get this:
[gargle@vlds204 reporting]$ ./test.pl | tee test.txt x password: alfabeta[gargle@vlds204 reporting]$
I'm on perl v5.16.1, Term::Prompt is at 1.04, Modern::Perl is at 1.20120521. I'm not experiencing this behaviour on cygwin, on perl v5.14.2, Term::Prompt 1.04 and Modern::Perl 1.03. Can someone confirm this? What's going on?
--
if ( 1 ) { $postman->ring() for (1..2); }

Replies are listed 'Best First'.
Re: Weird Term::Prompt behaviour
by Anonymous Monk on Sep 17, 2012 at 19:06 UTC
      What I find weird is that the '\n' are gone when I pipe or use redirection. So come these two runs don't give the same output, that's what I would like to know :
      [gargle@vlds204 reporting]$ ./test.pl password: x alfa beta
      [gargle@vlds204 reporting]$ ./test.pl | tee test.txt x password: alfabeta[gargle@vlds204 reporting]$ [gargle@vlds204 reporting]$
      --
      if ( 1 ) { $postman->ring() for (1..2); }

      Sorry, I forgot to mention that I did try $|=1 already. It doesn't work!

      [gargle@vlds204 reporting]$ cat test.pl #!/usr/bin/perl use Modern::Perl; use Term::Prompt; my $mypass = prompt( 'x', "password:", '', '' ); $|=1; say "alfa"; say "beta"; [gargle@vlds204 reporting]$ ./test.pl | tee test.txt x password: alfabeta[gargle@vlds204 reporting]$ ./test.pl password: x alfa beta [gargle@vlds204 reporting]$

      I'm starting to think my perl install is messed up. Are there any unit tests I can run?

      --
      if ( 1 ) { $postman->ring() for (1..2); }

        Sorry, I forgot to mention that I did try $|=1 already. It doesn't work!

        Doesn't work how? What is it you're expecting to happen that didn't happen?

        I'm starting to think my perl install is messed up.

        I doubt your install is messed up. You could try export  TERM=dumb   test.pl

        Are there any unit tests I can run?

        Sure, but they're not usually installed. You could verify your install with perlivp, but I doubt that'll help with this problem.