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, ...
3
votes
5answers
193 views

feeding data to C API expecting a filename

I'm writing a straightforward C program on Linux and wish to use an existing library's API which expects data from a file. I must feed it a file name as a const char*. But i have data, just like ...
2
votes
2answers
415 views

How do I use exec 3>myfifo in a script, and not have echo foo>&3 close the pipe?

Why can't I use exec 3>myfifo in the same manner in a bash script as I can in my terminal? I'm using named pipes to turn an awk filter into a simple "server", that should be able to take text input ...
2
votes
1answer
463 views

Insert data into mysql table data from a FIFO pipe in linux continuously

I want to insert data from a fifo pipe into a mysql table, right now for me, this is possible until the fifo pipe process is killed, the command : $>mkfifo /path/to/pipe $>sudo chmod 666 ...