cheatsheets/sh-pipes.md

294 B

title category layout
Shell: named pipes CLI 2017/sheet

Named pipes

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

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

References