How can we use redirection to use the contents of file1.txt as the input for cat?

cat >> file1.txtcat < file1.txtcat file1.txtcat | file1.txt

Great! We use the < command to use the file on the right as the input for the command on the left.

So close! We use the < command to use the file on the right as the input for the command on the left.