Some computer FAQ mostly Linux/Mac
Want to concatenate 2 or more text files?
At Terminal,
cat 1.txt 2.txt > 3.txt
Adds 1 and 2 together as a new file 3.txt
[23:20:52$] cat /Users/username/Desktop/1.txt /Users/username/Desktop/separator.txt /Users/username/Desktop/3.htm > /Users/username/Desktop/test.txt
here we take 1.txt, separator.txt and 3.htm and concatenate them into 1 file test.txt
file 1-
--------------------------------------------------------------------------
cat 1.txt 2.txt > 3.txt
Adds 1 and 2 together as a new file 3.txt
[23:20:52$] cat /Users/username/Desktop/1.txt /Users/username/Desktop/separator.txt /Users/username/Desktop/3.htm > /Users/username/Desktop/test.txt
here we take 1.txt, separator.txt and 3.htm and concatenate them into 1 file test.txt
file 1-
--------------------------------------------------------------------------
