Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
RE: weird problems with zsh
- X-seq: zsh-users 4041
- From: Paul Lew <paullew@xxxxxxxxx>
- To: oleg dashevskii <od@xxxxxxxxxxxx>
- Subject: RE: weird problems with zsh
- Date: Thu, 19 Jul 2001 09:19:38 -0700
- Cc: zsh-users@xxxxxxxxxx
- In-reply-to: <20010719212912.1f23066a.od@xxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <20010719212912.1f23066a.od@xxxxxxxxxxxx>
>>>>> "oleg" == oleg dashevskii <od@xxxxxxxxxxxx> 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 ""
Messages sorted by:
Reverse Date,
Date,
Thread,
Author