--- tags: - bash - howto --- Process substitution connects the output of a command to a file. This enables a command to accept the output of multiple commands. Useful with diff for example: ```bash diff <(ls dirA) <(ls dirB) ``` > Important! Don't but the <() inside quotes.. it will report: cannot find file