Hi, I'm wondering if there is a way to make a temp fifo. I could use the following to generate a temp fifo. But I'm wondering what is the safest way to generate a temp fifo.
file=`mktemp -u` mkfifo $file <do something> rm $file -- Regards, Peng
Hi, I'm wondering if there is a way to make a temp fifo. I could use the following to generate a temp fifo. But I'm wondering what is the safest way to generate a temp fifo.
file=`mktemp -u` mkfifo $file <do something> rm $file -- Regards, Peng