in reply to writing to a file via a named pipe

If you have more questions like this, I highly recommend perlopentut.

Replies are listed 'Best First'.
Re^2: writing to a file via a named pipe
by Anonymous Monk on Jan 27, 2009 at 19:27 UTC
    supposing i want to write to a pre-existing pipe, how do i do that. the perlopentut dosent seem to be clear on that. thanks
      If the pipe is a named pipe, you can just open it like any other file (except that seeking will not work, I guess).
        thanks guys, ill be testing this out tomorrow. i think it should work
        basically what I want to do is open(PIPE, ">> xxx.fifo") or create a new pipe with the same name and write an error through it. any idea how I could accomplish that?