Thursday, February 4, 2021

How to view/merge text files




View text file
$ cat list1.txt
milk
bread
apples

$ cat list2.txt
house
car

$
Combine text files
$ cat list1.txt list2.txt
milk
bread
apples

house
car

$
Combine 2 text files to another file
$ cat list1.txt list2.txt > todo.txt
$

No comments:

Post a Comment

How to install and configure Oracle Apex 24.1 with ORDS 22, Tomcat 9 and Jasper Report 7 on Oracle Linux 8.10

#########################Install Oracle  APEX 24.1################################ ----------------------------------------------------...