Description: Modern Web Development Bits and Pieces
Here’s a little bash trick you might not be aware of.
If you wrap a command in <( and ) , you get back something that looks like a file name;
$ echo <(ls) /dev/fd/63 now, that’s not a file, but a file descriptor – a temporary path that unix programs can be tricked into treating like a file.