create a temporary named pipe PIPE=$(mktemp -u) mkfifo $PIPE # attach it to file descriptor 3 ... Note that this is Linux-specific due to the use of procfs.
確定! 回上一頁