cheatsheets/sh-pipes.md

275 B

title category
Shell: named pipes CLI

Named pipes

diff <(ls ./old) <(ls ./new)

This creates a virtual file with the contents of the output of ls ./old.

References