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