Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 620 Bytes

alias.md

File metadata and controls

34 lines (25 loc) · 620 Bytes
title categories version core usage
alias
core
0.83.0
Alias a command (with optional flags) to a new name.
Alias a command (with optional flags) to a new name.

{{ $frontmatter.title }} for core

{{ $frontmatter.core }}

Signature

> alias (name) (initial_value)

Parameters

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

Notes

This command is a parser keyword. For details, check: https://www.nushell.sh/book/thinking_in_nu.html

Examples

Alias ll to ls -l

> alias ll = ls -l