> For the complete documentation index, see [llms.txt](https://til.yulrizka.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.yulrizka.com/unix/diff-output-of-2-command.md).

# diff output of 2 command

for example, I want to compare output of 2 different curl comand

```
$ diff <(curl -s http://host.com/a) <(curl -s http://anotherhost.com/a)
```
