Last Updated: February 25, 2016
·
1.111K
· Osvaldo Zonetti

Quick network chat with 'netcat'

To create a "chat server" just:

nc -l 1337

Then at the client:

nc 192.168.2.100 1337

Just change the IP and PORT according to your scenario.

For more great stuff: http://mylinuxbook.com/linux-netcat-command/