The cat command reads multiple files sequentially, and > redirects output to create a new file. 'cat file1.txt file2.txt > new.txt' concatenates file1 and file2 into new.txt. Option B has invalid make syntax. Option C would only show the end of file1 and start of file2. Option D uses mkdir (create directory) incorrectly.