Tag: cat

Trasfer over the network

Transfer stdin and stdout to and from machines over the network ssh remote_machine ‘cat – > file’ < file

Find Current DNS Server

The DNS servers are in the /etc/resolv.conf file – cat it to find what they are. You can edit to…

Reverse a File

This commands reverses a file in linux – the last line will be the first… tac file.txt tac = reverse…

Concatinate Files in Linux

This is how you concatinate multiple files in linux… cat file1 file2 file3 > final_file