File: alias

package info (click to toggle)
irssi 0.8.15-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 7,852 kB
  • ctags: 5,831
  • sloc: ansic: 52,878; sh: 10,180; perl: 2,572; makefile: 1,003
file content (18 lines) | stat: -rw-r--r-- 555 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

ALIAS %|[[-]<alias> [<command>]]

Creates a new alias or shows matching defined aliases. Without parameters shows all defined aliases. Multiple commands can be run if separated with ';' character. Parameters given to alias are in $0..$9 variables, if you don't use them in your alias, all parameters are automatically appended after it.

Examples:

/ALIAS w
   - shows all defined aliases starting with letter w.

/ALIAS send echo Sending file $1 to $0;dcc send $0-
   - creates alias 'send'.

/ALIAS -send
   - removes alias 'send'.

See also: UNALIAS