cio

a simple irc client
Download | Log | Files | Refs | README | LICENSE

README (1110B)


      1 cio - chat input/output           https://git.kloet.net/cio/
      2 ============================================================
      3 
      4 cio is a simple irc client, it requires the ncurses library
      5 and openssl to compile.
      6 
      7 cio is meant to be easily hackable; as a result, many IRC
      8 commands of RFC 2812 do not have an explicit implementation.
      9 *Most* users should not find this to be a problem as many of
     10 IRC's commands are purely informative. All unimplemented
     11 commands are printed to the server console with their
     12 respective code and message.
     13 
     14 Usage: cio [OPTIONS]
     15 
     16      OPTION                                    DEFAULT
     17 
     18     -n NICK     Sets the nick                  $IRCNICK
     19     -u USER     Sets the username              $USER
     20     -s SERVER   Server to connect to           irc.oftc.net
     21     -p PORT     Port to connect to             6697
     22     -l FILE     File to log recieved data
     23     -c FILE     File to load client cert from
     24     -T          Disable TLS
     25     -V          Disable TLS hostname check
     26     -h          Display help
     27 
     28 A password sent to the server can be specified by setting
     29 the environment variable $IRCPASS.