On Thu, Apr 04, 2002 at 12:34:53AM -0800, karthikeyan nagalingam wrote: > > nice to meet you, we are developing intranet > servser, our intranet server page can run in linux as > well as windows machine browser with SSL, our intranet > users want to do chat to discuss their company infor- > mation. can u suggest good programming for create the > "chat", can i do from the following > > PHP, PHTYON, C,C++, TCL/TK, PHP-GTK if any good pgm or > script language are their to make chat process. > > please suggest good tool(language/script) to do the > "chat". > ---end quoted text---
There is a default chat client with all *nix (including linux) boxes called "talk". Surprisingly, very few use it. All you need to do is: $talk username Man talk for details. If you are looking for a server implimentation for your intranet for a multi-user talk setup, serach freshmeat for ytalk. geektalkd is another chat server also linked on freshmeat. For a web chatroom server script (perl) can try Linutalk. HTH Bish -- : ####[ Linux One Stanza Tip (LOST) ]########################### Sub : Simple-One-Line-Calculator (solc) LOST #230 #!/bin/sh # Save as solc; chmod +x solc #Use: solc "(math params)" # Usage: solc "(4^3)/(sqrt(7.5))" echo "scale=4; $1" | bc # Note the quotes in parameters. ####<[EMAIL PROTECTED]>#################################### : _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
