In normal diff first.txt second.txt output, what do lines beginning with < and > represent?
diff first.txt second.txt
<
>
< marks content from the first file, and > marks content from the second file.
< proves a line is older, and > proves a line is newer.
< is standard input, and > is standard output.
< always marks added content, and > always marks deleted content.