Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
need to explicitly create newline on command prompt
- X-seq: zsh-users 3365
- From: Eric Smith <eric@xxxxxxxxxxxx>
- To: zsh-user mailing list <zsh-users@xxxxxxxxxxxxxx>
- Subject: need to explicitly create newline on command prompt
- Date: Mon, 14 Aug 2000 10:23:29 +0200
- Mailing-list: contact zsh-users-help@xxxxxxxxxxxxxx; run by ezmlm
<cut and paste from terminal>
[eric@plum ~]$ perl -e 'print "abc "'
[eric@plum ~]$ echo abc
abc
[eric@plum ~]$ perl -e 'print "abc \n"'
"'abc
[eric@plum ~]$ zsh
[eric@plum ~]$ perl -e 'print "abc "'
[eric@plum ~]$ perl -e 'print "abc \n"'
abc
[eric@plum ~]$ bash
bash-2.03$ perl -e 'print "abc "'
abc bash-2.03$ perl -e 'print "abc \n"'
abc
</cut and paste from terminal>
With zsh, I have never been able to get output of a perl command
unless an explicit "\n" is entered. A straight echo or even:
echo 324542| sed 's/3/9/g'
does print out. (Also there is that weird `"'abc' output.
With bash all is as it should be.
Any ideas where I could look t fix this?
--
Eric Smith
Fruitcom.com
Landline: 00 27 21 426 5311
Mobile: 00 27 82 373 1224
Messages sorted by:
Reverse Date,
Date,
Thread,
Author