murex Shell Docs

Command Reference: alias

Create an alias for a command

Description

alias defines an alias for global usage

Usage

alias: alias=command parameter parameter

!alias: command

Examples

Because aliases are parsed into an array of parameters, you cannot put the entire alias within quotes. For example:

# bad :(
» alias hw="out Hello, World!"
» hw
exec: "out\\ Hello,\\ World!": executable file not found in $PATH

# good :)
» alias hw=out "Hello, World!"
» hw
Hello, World!

Notice how only the command out "Hello, World!" is quoted in alias the same way you would have done if you’d run that command “naked” in the command line? This is how alias expects it’s parameters and where alias on murex differs from alias in POSIX shells.

In some ways this makes alias a little less flexible than it might otherwise be. However the design of this is to keep alias focused on it’s core objective. For any more advanced requirements you can use a function instead.

Detail

Allowed characters

Alias names can only include alpha-numeric characters, hyphen and underscore. The following regex is used to validate the alias’s parameters: ^([-_a-zA-Z0-9]+)=(.*?)$

Undefining an alias

Like all other definable states in murex, you can delete an alias with the bang prefix:

» alias hw=out "Hello, World!"
» hw
Hello, World!

» !alias hw
» hw
exec: "hw": executable file not found in $PATH

Order of preference

There is an order of precedence for which commands are looked up:

  1. runmode: this is executed before the rest of the script. It is invoked by the pre-compiler forking process and is required to sit at the top of any scripts.
  2. test and pipe functions also alter the behavior of the compiler and thus are executed ahead of any scripts.
  3. private functions - defined via private. Private’s cannot be global and are scoped only to the module or source that defined them. For example, You cannot call a private function directly from the interactive command line (however you can force an indirect call via fexec).
  4. Aliases - defined via alias. All aliases are global.
  5. murex functions - defined via function. All functions are global.
  6. Variables (dollar prefixed) which are declared via global, set or let. Also environmental variables too, declared via export.
  7. globbing: however this only applies for commands executed in the interactive shell.
  8. murex builtins.
  9. External executable files

You can override this order of precedence via the fexec and exec builtins.

Synonyms

See Also

This site's content is rebuilt automatically from murex's source code after each merge to the master branch. Downloadable murex binaries are also built with the website.

Last built on Mon Feb 13 09:18:06 UTC 2023 against commit f339958f33995895c1d997efcdbb8408d2c8d45f8b5f934.

Current version is which has been verified against 13950 tests cases.