]> git.armaanb.net Git - sic.git/blob - sic.1
initial commit
[sic.git] / sic.1
1 .TH SIC 1 sic-0.0
2 .SH NAME
3 sic \- simple irc client
4 .SH SYNOPSIS
5 .B sic
6 .RB \-a
7 .IR address
8 .RB [ \-n
9 .IR nick ]
10 .RB [ \-f
11 .IR fullname ]
12 .RB [ \-p
13 .IR password ]
14 .RB [ \-v ]
15 .SH DESCRIPTION
16 .B sic
17 is an extremly fast, small and simple irc client.  It reads commands from
18 standard input and prints all server output to standard output. It multiplexes
19 also all channel traffic into one output, that you don't have to switch
20 different channel buffers, that's actually a feature.
21 .SH OPTIONS
22 .TP
23 .BI \-a " address "
24 Lets you specify the address which
25 .B sic
26 uses to listen for connections.  The syntax for
27 .I address
28 is taken (along with many other profound ideas) from the Plan 9 operating
29 system and has the form
30 .B tcp!hostname!port
31 for tcp sockets.
32 .BI \-p " password"
33 Specifies the password to authenticate the nick on the server.
34 .TP
35 .BI \-n " nick "
36 Specifies the nick name (default: $USER).
37 .TP
38 .BI \-f " fullname "
39 Specifies the full name.
40 .BI \-v
41 Prints version information to standard output, then exits.
42 .SH COMMANDS
43 .TP
44 .FN /j " #channel/user "
45 join/query a channel/user
46 .TP
47 .FN /l " #channel "
48 leave a channel/query
49 .TP
50 .FN /m " #channel/user msg "
51 write a message to #channel/user
52 .FN /t " topic"
53 set the channel topic
54 .TP
55 Everything which is not a command will simply be posted into the channel or to
56 the server.
57 .TP