Create A File Descriptor with Process Substitution
Last updated
Was this helpful?
Last updated
Was this helpful?
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: and