From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16446 invoked from network); 19 Jul 2001 16:28:02 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 19 Jul 2001 16:28:02 -0000 Received: (qmail 5320 invoked by alias); 19 Jul 2001 16:26:59 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 4041 Received: (qmail 5305 invoked from network); 19 Jul 2001 16:26:59 -0000 X-Authentication-Warning: paullew-ultra.cisco.com: paullew set sender to paullew@cisco.com using -f From: Paul Lew MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15191.2202.466860.487851@paullew-ultra.cisco.com> Date: Thu, 19 Jul 2001 09:19:38 -0700 To: oleg dashevskii Cc: zsh-users@sunsite.dk Subject: RE: weird problems with zsh In-Reply-To: <20010719212912.1f23066a.od@iclub.nsu.ru> References: <20010719212912.1f23066a.od@iclub.nsu.ru> X-Mailer: VM 6.94 under Emacs 20.7.1 >>>>> "oleg" == oleg dashevskii writes: oleg> hello! for some case or another when I type into the oleg> command line oleg> % perl -e "print 'aaa'" oleg> it outputs nothing, as opposed to bash which lets perl oleg> output 'aaa' You need to add '\n' to the print, otherwise, the output displayed will be overwritten by the zsh prompt. You can try to add an echo command at the end to see what I meant: % perl -e "print 'aaa'"; echo ""