index.md - sites - public wiki contents of suckless.org | |
git clone git://git.suckless.org/sites | |
Log | |
Files | |
Refs | |
--- | |
index.md (1179B) | |
--- | |
1 Irc it (ii) | |
2 =========== | |
3 ii is a minimalist FIFO and filesystem-based IRC client. It creates an i… | |
4 directory tree with server, channel and nick name directories. In every | |
5 directory a FIFO in file and a normal out file is created. | |
6 | |
7 The in file is used to communicate with the servers and the out files co… | |
8 the server messages. For every channel and every nick name there are rel… | |
9 and out files created. This allows IRC communication from command line a… | |
10 adheres to the Unix philosophy. | |
11 example | |
12 | |
13 Join a channel as follows: `$ echo "/j #wmii" > in` | |
14 and ii creates a new #wmii (channel) directory with in and out files. | |
15 | |
16 irc/irc.oftc.net | |
17 |-- #wmii | |
18 | |-- in | |
19 | `-- out | |
20 |-- #ii | |
21 | |-- in | |
22 | `-- out | |
23 |-- #suckless | |
24 | |-- in | |
25 | `-- out | |
26 |-- chanserv | |
27 | `-- out | |
28 |-- nickserv | |
29 | |-- in | |
30 | `-- out | |
31 |-- out | |
32 `-- in | |
33 | |
34 It consists of <= 1000 lines of code and is the big brother of [sic](/si… | |
35 | |
36 Download | |
37 -------- | |
38 * [ii 2.0](//dl.suckless.org/tools/ii-2.0.tar.gz) (12kb) (2022-10-04) | |
39 | |
40 Development | |
41 ----------- | |
42 You can [browse](//git.suckless.org/ii) its source code repository or get | |
43 a copy using the following command: | |
44 | |
45 git clone https://git.suckless.org/ii |