HomeCodeLinuxHow to view/merge text files
Linux commands

How to view/merge text files

Linux view/merge text files.

Linux view/combine text files.

View text file

$ cat list1.txtmilkbreadapples$ cat list2.txthousecar$

Combine text files

$ cat list1.txt list2.txtmilkbreadappleshousecar$

Combine 2 text files to another file

$ cat list1.txt list2.txt > todo.txt$

cat command →