bash-redirections-cheat-sheet
bash-redirections-cheat-sheet copied to clipboard
Misplaced example
You put the example with two commands (2 find) in the row that was talking about one:
cmd < <(cmd1)
Best example: diff <(find /path1 | sort) <(find /path2 | sort)
Great cheat sheet! Thanks
(it could be nicely added to the duckduckgo.com cheat sheets)