Posts Tagged With: cat

Reverse a File

Tagged with: , , , , , ,

This commands reverses a file in linux - the last line will be the first…


tac file.txt

tac = reverse of cat

No Comments »

Concatinate Files in Linux

Tagged with: , , , ,

This is how you concatinate multiple files in linux…


cat file1 file2 file3 > final_file
No Comments »