Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
is this a feature of zsh-3.1.6?
- X-seq: zsh-users 2810
- From: User ALEX <alex@xxxxxxxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-users@xxxxxxxxxxxxxx
- Subject: is this a feature of zsh-3.1.6?
- Date: Sun, 26 Dec 1999 22:48:12 -0700 (MST)
- Mailing-list: contact zsh-users-help@xxxxxxxxxxxxxx; run by ezmlm
Hi.
The following does not produce output to screen on FreeBSD-3.4:
#include <stdio.h>
int main (void)
{
printf ("Hello World\n");
return 0;
}
c74763-a% ./hello
c74763-a% ./hello | strings
Hello World
When '\n' is added to printf:
#include <stdio.h>
int main (void)
{
printf ("Hello World\n");
return 0;
}
c74763-a% ./hello
Hello World
However, when running under /bin/sh, all works.
Please suggest something :-)
Messages sorted by:
Reverse Date,
Date,
Thread,
Author