IRC: Difference between revisions
add command options for msg |
logging in |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
= Common = | = Common = | ||
Logging in | |||
<syntaxhighlight lang="irc"> | |||
/connect irc.libera.chat 6667 YourNick:YourPassword | |||
</syntaxhighlight> | |||
Logging in after connecting to a network | |||
<syntaxhighlight lang="irc"> | |||
/msg NickServ IDENTIFY YourNick YourPassword | |||
</syntaxhighlight> | |||
Search for a channel | Search for a channel | ||
< | <syntaxhighlight lang="console"> | ||
/msg alis LIST #foo -mode =n -min 10 -show mt | /msg alis LIST #foo -mode =n -min 10 -show mt | ||
</ | </syntaxhighlight> | ||
<pre> | <pre> | ||
Line 17: | Line 29: | ||
-showsecret: show secret channels (requires chan:auspex) | -showsecret: show secret channels (requires chan:auspex) | ||
</pre> | </pre> | ||
= Administration = | |||
Give self (if authorized already) ChanOp status (@) | |||
[http://www.geekshed.net/commands/chanserv/ Reference] | |||
<syntaxhighlight lang="irc"> | |||
/msg ChanServ OP #channelname nick | |||
</syntaxhighlight> | |||
= Weechat = | |||
Remove timestamp | |||
<syntaxhighlight lang="irc"> | |||
/set weechat.look.buffer_time_format "" | |||
</syntaxhighlight> | |||
= Tray = | |||
* https://gist.github.com/xero/2d6e4b061b4ecbeb9f99 |
Latest revision as of 15:40, 1 September 2023
Common
Logging in
/connect irc.libera.chat 6667 YourNick:YourPassword
Logging in after connecting to a network
/msg NickServ IDENTIFY YourNick YourPassword
Search for a channel
/msg alis LIST #foo -mode =n -min 10 -show mt
Comamnds are: -min <n>: show only channels with at least <n> users -max <n>: show only channels with at most <n> users -skip <n>: skip first <n> matches -show [m][t]: show modes/topicsetter -mode <+|-|=><modes>: modes set/unset/equal -topic <pattern>: topic matches pattern -showsecret: show secret channels (requires chan:auspex)
Administration
Give self (if authorized already) ChanOp status (@)
/msg ChanServ OP #channelname nick
Weechat
Remove timestamp
/set weechat.look.buffer_time_format ""