Piping and input stream redirection to same command, which input does command take?
Piping and input stream redirection to same command, which input does command take? I was trying to run the command given below cat numbers.txt | sort < words.txt The above command has a pipe from cat command feeding to input stream of sort command. But at the same time, input stream of the sort command …