CHANS
Syntax
CHANS pattern
Description
Returns all channels matching pattern
.
Supported glob-style patterns:
- h?llo matches hello, hallo and hxllo
- h*llo matches hllo and heeeello
- h[ae]llo matches hello and hallo, but not hillo
- h[^e]llo matches hallo, hbllo, ... but not hello
- h[a-b]llo matches hallo and hbllo
Examples
CHANS * # return all channels
CHANS warehouse:* # return all channels that have the prefix with 'warehouse:'