These are some guides for various use.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# II
ii is a suckless tool for the internet relay chat.`<>` indicated placeholders.
## Join a server
On most servers `ssl` is required.So you need the `ssl` patch and use `-e` instead of `-p`.
```shellii -n <nick> -s <server> -e 9999 &(sleep 2 &&echo "/msg NickServ REGISTER `<password>` `<mail>`" > ~/irc/<server>/nickserv/in &)#(sleep 2 &&
#echo "/msg NickServ IDENTIFY `<password>`" > ~/irc/<server>/nickserv/in &)
```
## Join a channel
```shellecho "/join <channel-name>" > ~/irc/<server>/in &```
## Show channel
```shelltail -f -n 500 \<channel>/out```
## Write into channel
```shellecho "\msg <message>" > ~/irc/<server>/<channel>/in```
## Write private message
```shellecho "\msg <recipient> <message>" > ~/irc/<server>/<channel>/in```
|