Create A File Descriptor with Process Substitution
Process substitution can be used to create a file descriptor from the evaluation of a shell command. The syntax for process substitution is <(LIST)
where LIST
is one or more bash commands.
This is particularly useful for commands that expect files, such as diff:
Sources: Brian Dunn and Bash Guide for Beginners
Last updated