From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14735 invoked from network); 23 Jun 1998 18:15:50 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 23 Jun 1998 18:15:50 -0000 Received: (from list@localhost) by math.gatech.edu (8.8.5/8.8.5) id OAA19054; Tue, 23 Jun 1998 14:11:13 -0400 (EDT) Resent-Date: Tue, 23 Jun 1998 13:54:29 -0400 (EDT) Message-Id: <199806231755.KAA08322@bebop.clari.net> To: James Swanson Cc: zsh-users@math.gatech.edu Subject: Re: STDOUT Limbo In-reply-to: James_Swanson's message of Tue, 23 Jun 1998 11:23:32 -0500. <358FD661.41C6@itd.sterling.com> Date: Tue, 23 Jun 1998 10:55:37 -0700 From: Wayne Davison Resent-Message-ID: <"YnheE3.0.qW4.Ll-Zr"@math> Resent-From: zsh-users@math.gatech.edu X-Mailing-List: archive/latest/1644 X-Loop: zsh-users@math.gatech.edu X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu James Swanson writes: > Has anyone had troubles with STDOUT from a Perl script? Unlike > any of my shell scripts, output doesn't show up at the command > line. Sounds like you didn't include a newline in your perl scripts. The analogous command for this shell output: echo "some string" would be this in perl: print "some string\n"; ..wayne..