Is there any way to create a unix FIFO with Go language? There is no Mkfifo
, nor Mknod
in os
package, though I expected named FIFOs are largely used in posix OS's. In fact, there is a function for creating an unnamed FIFO (pipe), but no function for creating named pipes.
Am I the only one who needs them?