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.
<(commands ...)bash/zsh では、出力動作をファイルとして行います。POSIX に相当するものは存在しますか?
<(commands ...)
mkfifo foo.fifo ## if your "commands" is multiple commands # { commands ...; } >foo.fifo & # otherwise, if it's just one commands ... >foo.fifo & something_else foo.fifo
は、利用可能な最も近い等価物です
something_else <( commands ... )