Hacker News new | ask | show | jobs
by luckman212 158 days ago
would very much like to see a small example of how to create, consume, and destroy those FIFOs...
1 comments

https://man7.org/linux/man-pages/man1/mkfifo.1.html

Pretty simple. This creates a named pipe. One end of a shell command redirects to it, one end redirects from it. rm when finished.

You can just use process substitution

cat <(secret-print my-secret)

In a shell script situation, you'd typically trap EXIT and ERR and remove the fifo in the handler.