I tested two commands that produce the same output:
$ wc -l < input_file
6
$ < input_file wc -l
6
The first command redirects input_file to stdin which is then read by wc
. I don't understand the second command and would appreciate an explanation.