Home Explore Blog CI



nushell

commands/docs/help_aliases.md
37a9f41d3baa5557dd1b0487df000bc53a3a5f4bd4a7bd50000000030000039f
---
title: help aliases
categories: |
  core
version: 0.104.0
core: |
  Show help on nushell aliases.
usage: |
  Show help on nushell aliases.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->

# `help aliases` for [core](/commands/categories/core.md)

<div class='command-title'>Show help on nushell aliases.</div>

## Signature

```> help aliases {flags} ...rest```

## Flags

 -  `--find, -f {string}`: string to find in alias names and descriptions

## Parameters

 -  `...rest`: The name of alias to get help on.


## Input/output types:

| input   | output |
| ------- | ------ |
| nothing | table  |
## Examples

show all aliases
```nu
> help aliases

```

show help for single alias
```nu
> help aliases my-alias

```

search for string in alias names and descriptions
```nu
> help aliases --find my-alias

```

Chunks
c74067b5 (1st chunk of `commands/docs/help_aliases.md`)
Title: Help Aliases Command in Nushell
Summary
The `help aliases` command in Nushell displays help information about available aliases. It can show all aliases, provide help for a specific alias, or search for aliases by name or description using the `--find` flag.