]> git.armaanb.net Git - sic.git/blob - sic.1
added eprint()
[sic.git] / sic.1
1 .TH SIC 1 sic-VERSION
2 .SH NAME
3 sic \- simple irc client
4 .SH SYNOPSIS
5 .B sic
6 .RB [ \-s " <server>"]
7 .RB [ \-p " <port>"]
8 .RB [ \-n " <nick>"]
9 .RB [ \-k " <keyword>"]
10 .RB [ \-f " <fullname>"]
11 .RB [ \-v ]
12 .SH DESCRIPTION
13 .B sic
14 is an extremly fast, small and simple irc client.  It reads commands from
15 standard input and prints all server output to standard output. It multiplexes
16 also all channel traffic into one output, that you don't have to switch
17 different channel buffers, that's actually a feature.
18 .SH OPTIONS
19 .TP
20 .B \-s <server>
21 Overrides the default server (irc.oftc.net)
22 .TP
23 .B \-p <port>
24 Overrides the default port (6667)
25 .TP
26 .B \-n <nickname>
27 Override the default nick ($USER)
28 .TP
29 .B \-k <keyword>
30 Specifies the keyword to authenticate your nick on the server
31 .TP
32 .B \-f <fullname>
33 Specify the real name (default is $USER)
34 .TP
35 .BI \-v
36 Prints version information to standard output, then exits.
37 .SH COMMANDS
38 .TP
39 .B :j #channel
40 Join a channel
41 .TP
42 .B :l #channel
43 Leave a channel
44 .TP
45 .B :m #channel/user msg
46 Write a message to #channel/user
47 .TP
48 .B :s #channel/user
49 Set default channel/user
50 .TP
51 .B :t #channel topic
52 Set the channel topic
53 .TP
54 Everything which is not a command will simply be posted into the channel or to
55 the server.