How To Quickly Transfer Files From One Linux System To Another Using netcat

How To Quickly Transfer Files From One Linux System To Another Using netcat
Here’s how to quickly transfer files from one Linux system to another using netcat: 1. Issue the following command in terminal on the source Linux system – cat <file name> | nc -l <port number> For example, to transfer a file ‘About.txt’ using port 5000, we need to issue the following command in terminal on the source Linux system – cat About.txt | nc -l 5000   2....