Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
If I do the following:
mkfifo fifo some_command < fifo
"some_command" doesn't get spawned before there is data fed through "fifo". How can resolve this without first having to send stuff down the fifo?
你可以做
cat fifo | some_command