Create A File Descriptor with Process Substitution
$ cat <(echo 'hello, world')
hello, world$ diff <(echo 'hello, world') <(echo 'hello, mars')
1c1
< hello, world
---
> hello, marsLast updated
$ cat <(echo 'hello, world')
hello, world$ diff <(echo 'hello, world') <(echo 'hello, mars')
1c1
< hello, world
---
> hello, marsLast updated