|
|
On Wed, 8 Feb 2006 07:24:49 -0600, "inode0" <inode0@xxxxxxxxx> said:
> On 2/8/06, Wally Winchester <wally_winchester@xxxxxxxxxxx> wrote:
> > Hello,
> > I'm having a problem with my pipe, please can anyone have a look and see
> > what's wrong with it?
> >
> > $ mkfifo testpipe
> > $ logger -u testpipe message
> > connect: Connection refused.
>
> You are creating a named pipe and then trying to use it as a socket.
> You should be able to open it for both reading and writing as a file
> though
>
> $ echo message > testpipe
>
> should write message on the pipe and
>
> $ cat testpipe
>
> should read the message for example.
>
> John
>
> --
> Taroon-list mailing list
> Taroon-list@xxxxxxxxxx
> https://www.redhat.com/mailman/listinfo/taroon-list
Ack. It would be good if logger could write to pipes.
Thanks a lot.
--
Wally Winchester
wally_winchester@xxxxxxxxxxx
--
http://www.fastmail.fm - A fast, anti-spam email service.
--
Taroon-list mailing list
Taroon-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/taroon-list
|
|