greycat 1174415527 learn Process substition: command < <(other command) # Sets up a pipe, socket or other means of IPC (implementation specific), and replaces the <(...) with the filename of that socket. Useful with while read loops to avoid the subshell issue of a pipe. greycat 1174415560 forget greycat 1174415566 learn Process substitution: command < <(other command) # Sets up a pipe, socket or other means of IPC (implementation specific), and replaces the <(...) with the filename of that socket. Useful with while read loops to avoid the subshell issue of a pipe. lhunath 1197841815 forget lhunath 1197841939 learn Process substitution: command1 <(command2) -- command2 will be executed; a socket, fifo or temporary file will be created that contains its output. The <(command2) will be expanded into this file's filename so that command1 is executed with that filename as a parameter. tuxdev 1277752568 forget tuxdev 1277752578 learn Process Substitution -- <(cmd) and >(cmd) -- see http://mywiki.wooledge.org/ProcessSubstitution , or http://mywiki.wooledge.org/BashFAQ/024 for a common use lhunath 1322635836 forget lhunath 1322635892 learn Process Substitution -- <(cmd) and >(cmd), See http://mywiki.wooledge.org/BashSheet#Expansions http://mywiki.wooledge.org/ProcessSubstitution http://mywiki.wooledge.org/BashFAQ/024 e36freak 1369256747 forget e36freak 1369256753 learn #redirect >() e36freak 1369256808 forget e36freak 1369256828 learn Process Substitution -- <(cmd) and >(cmd) -- see http://mywiki.wooledge.org/ProcessSubstitution , or http://mywiki.wooledge.org/BashFAQ/024 for a common use lhunath 1376318041 forget lhunath 1376318052 learn Process Substitution >(command ...) or <(...) is replaced by a temporary filename. Writing or reading that file causes bytes to get piped to the command inside. Often used in combination with file redirection: cmd1 2> >(cmd2). See http://mywiki.wooledge.org/ProcessSubstitution http://mywiki.wooledge.org/BashFAQ/024