<(commands ...)in bash / zsh makes the output behavior as a file. Is there a POSIX equivalent?
<(commands ...)
mkfifo foo.fifo ## if your "commands" is multiple commands # { commands ...; } >foo.fifo & # otherwise, if it just one commands ... >foo.fifo & something_else foo.fifo
- nearest available equivalent
something_else <( commands ... )
Source: https://habr.com/ru/post/1650352/More articles:Создает ли C-тернарный оператор-оператор новый масштаб? - cOracle DB, reset live connections after changing user grants - databaseSwift + Слесарь: не хранить значение - swiftASP.NET Web API Controller output is always buffered - c #Check for classes when clicked (React) - javascriptAssociation rule in R - removing a redundant rule (arules) - rIs it possible to simulate process substitution on msys / mingw (using bash 3.x) - bashJobScheduler.schedule(job) не запускает JobService - androidSpark dataset conversion to RDD - javaR - regular expression error (PCRE version) - rAll Articles