blob: 34f7b11066155c7c6cf17f887c1ce6ab93b51fe1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
.TH CIC 1 cic-VERSION
.SH NAME
cic \- curses irc client
.SH SYNOPSIS
.B cic
.RB [ \-h
.IR host ]
.RB [ \-p
.IR port ]
.RB [ \-n
.IR nick ]
.RB [ \-k
.IR pass ]
.RB [ \-v ]
.SH DESCRIPTION
.B cic
is an extremely fast, small and simple irc client. It reads commands from
the input line and prints all server output to a single output window. It
also multiplexes all channel traffic into one output, so you don't have to
switch different channel buffers. So that's actually a feature.
.SH OPTIONS
.TP
.BI \-h " host"
Overrides the default host (irc.oftc.net)
.TP
.BI \-p " port"
Overrides the default port (6667)
.TP
.BI \-n " nick"
Override the default nick ($USER)
.TP
.BI \-k " pass"
Specifies the PASS connection password
.TP
.B \-v
Prints version information to stderr, then exits
.SH COMMANDS
.TP
.BI :j " #channel"
Join a channel
.TP
.BI :l " #channel"
Leave a channel
.TP
.BI :m " #channel/user message"
Send a message to channel or user
.TP
.BI :s " #channel/user"
Set default channel or user
.TP
.BI : command
Any line beginning with
.B :
is sent as a command
|