Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 601 Bytes

File metadata and controls

16 lines (14 loc) · 601 Bytes

Reactmed

Useful commands

To copy content from client and paste it to server use netcat. On server run netcat which receives a data from the client

netcat -l -p <PORT> > <FILE>

On client run netcat to send a data to the server:

netcat <HOST> <PORT>   

Once netcat starts, you need input data and press ENTER. Server receives data and writes content to specified file.

Links

  1. How to use SSH for connecting macOS Sierra to Ubuntu