I don't want a dedicated client, I want to go back to the old ways of modem to modem over VT100 links and chatting that way. How can I ssh to another machine, or they to me, and we run a cli app that allows us to chat, something basic like `wall` I think would work, but I have never been able to get that to work.
I am on Mac OS X, and ideally I could do this without installing other software, using something built in.
Put this in your .bashrc file:
then run: The & puts tail into the background so it continues running, and "talkfile" needs to be a file that both of you have write access to.You can both communicate simply by using the talk function like any other bash command:
This works on Linux, not sure about Mac.It's nice because it records what you say, so there's no need for the other person to be logged in to get your message, and you get a printout of the last few lines of conversation when you "login" (run the tail -f command). There's nothing extra to install either.
(edit, apparently say is already installed on OS X, so I renamed the function "talk")