ii is a minimalist FIFO and filesystem-based IRC client. It creates an irc directory tree with server, channel and nick name directories. In every directory a FIFO in file and a normal out file is created.
Go to file
Nico Golde 7c22981790 update CHANGES and makefile config for 1.6 2011-01-31 21:47:00 +01:00
.hgtags Added tag 1.5 for changeset 550ee1100719 2011-01-24 17:52:38 +01:00
CHANGES update CHANGES and makefile config for 1.6 2011-01-31 21:47:00 +01:00
FAQ documentation fixes and query.sh added 2007-02-03 12:58:13 +01:00
LICENSE - prepare 1.4 release 2008-08-09 13:45:46 +02:00
Makefile changes for ii-1.2 2007-06-23 13:37:05 +02:00
README - prepare 1.4 release 2008-08-09 13:45:46 +02:00
config.mk update CHANGES and makefile config for 1.6 2011-01-31 21:47:00 +01:00
ii.1 document /a for away, patch by Even Gates 2010-06-25 10:55:05 +02:00
ii.c restructuring to stay under 500 lines ;) fix regression from 1.5 on handling unknown commands 2011-01-31 21:45:52 +01:00
query.sh replace echo with printf so it doesnt rely on xsi extension of susv3 2009-06-01 13:39:01 +02:00

README

Abstract
--------
ii is a minimalistic FIFO and filesystem based IRC client.  It creates an irc
directory tree with server, channel and nick name directories.  In every
directory a FIFO file (in) and and normal file (out) is placed.

The in file is used to communicate with the servers and the out files include
the server messages. For every channel and every nick name there will be new in
and out files.

The basic idea of this is to be able to communicate with an IRC server with
standard command line tools.  For example if you want to join a channel just do
echo "/j #channel" > in and ii creates a new channel directory with in and out
file.

Installation
------------
Edit config.mk to match your local setup. ii is installed into
/usr/local by default.

Afterwards enter the following command to build and install ii (if
necessary as root):

    $ make clean install

Running ii
------------
Simply invoke the 'ii' command with required arguments

To make ii a bit more comfortable use it in combination with the multitail
program and for example with vim. Run vim in the server directory and use
key mapping like:
map w1 :.w >> \#ii/in<cr>
map w2 :.w >> \#wmii/in<cr>
to post to channels.

If you use the next editor line for a new posting you can use ctrl-p for nick
completion if you wrote the nick in the past.
Thanks to Matthias Kopfermann for this hint.

You can find an example of how this nested environment could look like on:
http://nion.modprobe.de/blog/archives/440-Using-the-ii-irc-client.html

Configuration
-------------
No configuration is needed.

Changelog
---------
Since I missed the chance to add a proper changelog right from the beginning,
please have a look at the commit messages on http://code.suckless.org/hg/ii/
they are fairly descriptive on releases prior to 1.2.

Contact
-------
If you want to contact the developers just write a mail to
ii (at) modprobe (dot) de

-- Nico Golde, Anselm R. Garbe