The command 'cat file1.txt file2.txt > new.txt' concatenates both files and redirects output to create new.txt. The > operator creates a new file (or overwrites existing). Option B uses invalid syntax, C misuses tail/head, and D only displays to screen without creating file.