LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

ii

minimalist filesystem-based IRC client

TLDR

Connect to IRC server
$ ii -s [irc.libera.chat] -n [nickname]
copy
Connect with port
$ ii -s [irc.libera.chat] -p [6697] -n [nickname]
copy
Specify IRC directory
$ ii -s [server] -i [~/.irc] -n [nickname]
copy
Join channel
$ echo "/j #channel" > ~/irc/server/in
copy
Send message
$ echo "Hello world" > ~/irc/server/#channel/in
copy

SYNOPSIS

ii [options]

DESCRIPTION

ii (IRC It) is a minimalist filesystem-based IRC client. It creates a directory structure where each server and channel is a directory with in (write to send) and out (read for messages) files.This design follows the Unix philosophy, allowing IRC interaction through standard file operations and shell scripts. It can be combined with tools like tail, cat, and custom scripts.

PARAMETERS

-s server

IRC server address.
-p port
Server port (default 6667).
-n nickname
IRC nickname (defaults to $USER).
-k envvar_
Environment variable that holds the IRC password (avoids exposing it on the command line).
-f fullname
Real name (GECOS field).
-i prefix
IRC directory prefix (default ~/irc).
-t
Connect using TLS.
-v
Do not verify the TLS certificate.
-4
Only connect over IPv4.
-6
Only connect over IPv6.
-u socket
Connect to a UNIX domain socket instead of a network server.

DIRECTORY STRUCTURE

$ ~/irc/
└── irc.libera.chat/
    ├── in          # Send commands
    ├── out         # Server messages
    └── #channel/
        ├── in      # Send to channel
        └── out     # Channel messages
copy

USAGE

$ # Monitor channel
tail -f ~/irc/server/#channel/out

# Join channel
echo "/j #linux" > ~/irc/server/in

# Send message
echo "Hello!" > ~/irc/server/#channel/in
copy

CAVEATS

No built-in interface; requires scripts or tools. No SSL support without wrapper. Limited feature set. Manual channel/nick management.

HISTORY

ii was created as part of the suckless project, following their philosophy of minimal, filesystem-based tools. It demonstrates IRC can work with standard Unix file operations.

SEE ALSO

irssi(1), weechat(1), sic(1)

Copied to clipboard
Kai