alias

Define a new command that is an alias of an existing command.

alias [-a] [--] ALIAS = COMMAND

  • ALIAS is the name of the alias command to create.
  • COMMAND is the command being aliased to.

If “-a” is specified, the command is an abbreviation, and will not appear in help command list output.

Examples:

Make “spe” an alias of “set print elements”
alias spe = set print elements
Make “elms” an alias of “elements” in the “set print” command
alias -a set print elms = set print elements