IRC: Difference between revisions

From Medien Wiki
Line 24: Line 24:
(In all examples replace the stuff between the {} symbols with your data and ommit the symbols)
(In all examples replace the stuff between the {} symbols with your data and ommit the symbols)
===Register a new nickname===
===Register a new nickname===
/msg nickserv register {password} {email}  
<syntaxhighlight lang="bash">/msg nickserv register {password} {email}</syntaxhighlight>


===Join (enter) a chatroom===
===Join (enter) a chatroom===
/join #{channelname}
<syntaxhighlight lang="bash">/join #{channelname}</syntaxhighlight>


===Change a nickname===
===Change a nickname===
/nick {newnick}
<syntaxhighlight lang="bash">/nick {newnick}</syntaxhighlight>


===Leave current chatroom===
===Leave current chatroom===
/part
<syntaxhighlight lang="bash">/part</syntaxhighlight>


===Exit all chats===
===Exit all chats===
/quit
<syntaxhighlight lang="bash">/quit</syntaxhighlight>