From 8830f26076066f6b57e4e5986b88d9ac3ebf434d Mon Sep 17 00:00:00 2001 From: Florian B Date: Wed, 7 Apr 2021 19:55:30 +0200 Subject: [PATCH] sic: add page (#5694) --- pages/linux/sic.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/linux/sic.md diff --git a/pages/linux/sic.md b/pages/linux/sic.md new file mode 100644 index 000000000..3482ebf35 --- /dev/null +++ b/pages/linux/sic.md @@ -0,0 +1,29 @@ +# sic + +> Simple IRC client. +> Part of the suckless tools. +> More information: . + +- Connect to the default host (irc.ofct.net) with the nickname set in the `$USER` environment variable: + +`sic` + +- Connect to a given host, using a given nickname: + +`sic -h {{host}} -n {{nickname}}` + +- Connect to a given host, using a given nickname and password: + +`sic -h {{host}} -n {{nickname}} -k {{password}}` + +- Join a channel: + +`:j #{{channel}}` + +- Send a message to a channel or user: + +`:m #{{channel|user}}` + +- Set default channel or user: + +`:s #{{channel|user}}`