In normal diff file1.txt file2.txt output, what do < and > indicate?
diff file1.txt file2.txt
<
>
They are shell redirections that run the displayed lines.
They mark lines that are identical in both files.
< proves a line is older, while > proves it is newer.
< prefixes content from the first file, while > prefixes content from the second file.