Difference between revisions of "IRC clients"

From the Linux and Unix Users Group at Virginia Teck Wiki
Jump to: navigation, search
imported>Echarlie
(Created page with "This is a compilation of IRC clients. Many of these (marked with †) are available on acidburn == Bouncers/Relays == * WeeChat † * ZNC...")
 
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
This is a compilation of [[IRC]] clients. Many of these (marked with †) are available on [[infrastructure:acidburn|acidburn]]
+
This is a compilation of [[IRC]] clients. Many of these (marked with †) are available on [[infrastructure:Acidburn|acidburn]]
  
 
== Bouncers/Relays ==
 
== Bouncers/Relays ==
Line 9: Line 9:
 
* BitchX
 
* BitchX
 
* IrcII †
 
* IrcII †
* irssi †
+
* [[irssi]]
  
 
== CLI-based ==
 
== CLI-based ==
 
* ii - a filesystem-based irc client †
 
* ii - a filesystem-based irc client †
 +
* a simple script using netcat and expect:
 +
<pre>
 +
#!/bin/bash
 +
nik=clf$RANDOM
 +
sr=localhost
 +
prt=1337
 +
expect -c "set timeout -1
 +
spawn nc $sr $prt
 +
set send_human {.1 .2 1 .2 1}
 +
expect AUTH*\n
 +
send -h \"user $nik * * :$nik commandlinefu\nnick $nik\n\"
 +
interact -o -re (PING.:)(.*\$) {send \"PONG :\$interact_out(2,string)\"}"
 +
</pre>
  
 
== GUI ==
 
== GUI ==
Line 18: Line 31:
 
* mIRC
 
* mIRC
  
[[categories:irc]] [[categories:Command-line *nix]] [[categories:software]]
+
[[category:IRC]]
 +
[[category:software]]
 +
[[Category:Needs restoration]]

Latest revision as of 21:09, 3 January 2019

This is a compilation of IRC clients. Many of these (marked with †) are available on acidburn

Bouncers/Relays

Curses-based

CLI-based

  • ii - a filesystem-based irc client †
  • a simple script using netcat and expect:
#!/bin/bash
nik=clf$RANDOM
sr=localhost
prt=1337
expect -c "set timeout -1
	spawn nc $sr $prt
	set send_human {.1 .2 1 .2 1}
	expect AUTH*\n 
	send -h \"user $nik * * :$nik commandlinefu\nnick $nik\n\"
	interact -o -re (PING.:)(.*\$) {send \"PONG :\$interact_out(2,string)\"}"

GUI

  • HexChat
  • mIRC