diff options
author | Kian Kasad <kian@kasad.com> | 2021-02-18 13:26:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 16:26:16 -0500 |
commit | efa17453a9f66d801f9de33bcc74236dc2d77be1 (patch) | |
tree | ee40cd16e4403b824e68e408547ba918f1b3ce06 /kirc.1 | |
parent | fix printing of join/part messages when cdef is a substring of the actual cha... (diff) | |
download | kirc-efa17453a9f66d801f9de33bcc74236dc2d77be1.tar.gz kirc-efa17453a9f66d801f9de33bcc74236dc2d77be1.tar.bz2 kirc-efa17453a9f66d801f9de33bcc74236dc2d77be1.tar.xz kirc-efa17453a9f66d801f9de33bcc74236dc2d77be1.tar.zst kirc-efa17453a9f66d801f9de33bcc74236dc2d77be1.zip |
Update docs (#100)
* add CTCP ACTION information to man page
* add documentation for <message> parameter to commands which support it
* fix incorrect flag character for real name option
* add verbosity option (-V) to man page
* separate flag options in usage information
Usually the format '[option1|option2]' means EITHER 'option1' OR
'option2' may be specified, but not both. Since the options '-v', '-V',
and '-e' can all be given (and are all optional), the proper format is
'[-v] [-V] [-e]'.
Diffstat (limited to 'kirc.1')
-rw-r--r-- | kirc.1 | 23 |
1 files changed, 20 insertions, 3 deletions
@@ -32,7 +32,7 @@ Specifies the channel(s) to JOIN (delimited by "," or "|") .BI \-n " nick" Specifies the NICK connection nickname .TP -.BI \-u " real" +.BI \-r " real" Specifies the users real name .TP .BI \-u " user" @@ -52,6 +52,10 @@ Specifies SASL EXTERNAL mechanism .TP .BI \-v Prints the version information to stderr, then exits +.TP +.BI \-V +Increases verbosity. Causes raw IRC messages to be printed when sent or +received. .SH COMMANDS .TP .BI /<command> @@ -63,8 +67,21 @@ Set default message channel to <channel> .BI <message> Send PRIVMSG to default message channel with <message> as the content .TP -.BI @<channel|nick> -Send PRIVMSG to specified <channel> or <nick> +.BI @<channel|nick> " <message>" +Send +.I <message> +to specified +.I <channel> +or +.I <nick> +.TP +.BI @@<channel|nick> +Send CTCP ACTION containing +.I <message> +to specified +.I <channel> +or +.I <nick> .SH AUTHOR Michael Czigler <michaelczigler at icloud dot com> .SH BUGS |