  | | | Problems with my pipe | Problems with my pipe 2006-02-08 - By inode0
Back On 2/8/06, Wally Winchester <wally_winchester@(protected)> 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@(protected) https://www.redhat.com/mailman/listinfo/taroon-list
|
|
 |