I have created two files namely file1.txt and file2.txt. When I write
echo < file1>
It returns an empty line. But cat < file1> returns the contents of the file1.txt.
Since echo prints whatever is sent to it, why is echo not printing the contents of the file1.txt?