As I recall there was something like netsend on windows that allowed simple messages to be sent over the local network. I especially like this because one doesn't need to install extra client soft (hello skype).
Is there something dead simple like this on Linux?
Just to clarify I'm looking for a bash command or simple CLI script/tool, not a GUI app.
netcat. You can use that tool for anything. – Nathan Osman Oct 10 '11 at 23:09while true; do nc -l 5555; doneand (the tricky part) is to echo something to the nc pipe instead of enter on it's interactive mode. On PC2 (or even another therminal in same machine) use:echo "i am PC2" | nc $IP 5555and the message will be sent and connection will close, but will be reopened. So, you can still do in PC3:echo "i am PC3" | nc $IP 5555and the PC1 will receive that message. – m3nda Feb 11 '17 at 00:31nc -l -p 55555on PC 1. – Rodrigo Apr 18 '20 at 01:16