Tagged Questions
3
votes
2answers
1k views
Named pipe similar to “mkfifo” creation, but bidirectional
I'd like to create a named pipe, like the one created by "mkfifo", but one caveat. I want the pipe to be bidirectional. That is, I want process A to write to the fifo, and process B to read from it, ...
1
vote
2answers
78 views
How can I have output from one named pipe fed back into another named pipe?
I'm adding some custom logging functionality to a bash script, and can't figure out why it won't take the output from one named pipe and feed it back into another named pipe.
Here is a basic version ...