0

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?

4

1 回答 1

1

你可以做

cat fifo | some_command
于 2012-07-11T02:16:59.847 回答