export alias for core

Alias a command (with optional flags) to a new name and export it from a module.

Signature

> export alias {flags} (name) (initial_value)

Parameters

  • name: name of the alias
  • initial_value: equals sign followed by value

Input/output types:

input output
nothing nothing

Examples

Alias ll to ls -l and export it from a module

> module spam { export alias ll = ls -l }

Notes

This command is a parser keyword. For details, check: https://irsh.vercel.app/book/thinking_in_rsh.html