1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 14:47:53 +02:00
cheatsheets/sh-pipes.md
2017-10-19 10:56:18 +08:00

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