I wonder how redirection is used in this example from this site https://shapeshed.com/unix-join/
Here is the Input
$ cat wine.txt
White Reisling Germany
Red Riocha Spain
Red Beaunes France
$ cat reviews.txt
Riocha Meh
Beaunes Great!
Reisling Terrible!
Here is the command and the result
$ join -1 2 -2 1 <(sort -k 2 wine.txt) <(sort reviews.txt)
Beaunes Red France Great!
Reisling White Germany Terrible!
Riocha Red Spain Meh
But in this case double use of < doesn't work
$ cat file 1
Hello
$ cat file 2
World
I expect
$ cat <file1 <file2
Hello World
But result is
World
Do you guys have any idea?