Write to named pipe or stdout?
markg85 opened this issue · 1 comments
markg85 commented
Hi,
I want to pipe the output of this application to a socket.
For that i need to be able to let it output to either stdout or a named pipe. As far as i can fell from the docs and the code there is no option to do either of these? I might have missed it?
Best regards,
Mark
markg85 commented
And closed :)
mkfifo foo
<app> -b foo
And in another app (mpv in this case)
cat foo | mpv -
Works just fine.