mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 05:42:21 +00:00
34 lines
593 B
Plaintext
34 lines
593 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# irssi
|
|
|
|
> Text based IRC client.
|
|
> More information: <https://irssi.org>.
|
|
|
|
- Open Irssi and connect to a server with a nickname:
|
|
|
|
`irssi -n {{nickname}} -c {{irc.example.com}}`
|
|
|
|
- Open Irssi and connect with a specific server on a given port:
|
|
|
|
`irssi -c {{irc.example.com}} -p {{port}}`
|
|
|
|
- Display help:
|
|
|
|
`irssi --help`
|
|
|
|
- Join a channel:
|
|
|
|
`/join {{#channelname}}`
|
|
|
|
- Change active window (starts at 1):
|
|
|
|
`/win {{window_number}}`
|
|
|
|
- Exit the application cleanly and quitting any server(s):
|
|
|
|
`/quit`
|