mirror of
https://github.com/nushell/nushell
synced 2025-01-03 16:58:58 +00:00
17 lines
245 B
Markdown
17 lines
245 B
Markdown
# def
|
|
|
|
Use `def` to create a custom command.
|
|
|
|
## Examples
|
|
|
|
```
|
|
> def my_command [] { echo hi nu }
|
|
> my_command
|
|
hi nu
|
|
```
|
|
|
|
```
|
|
> def my_command [adjective: string, num: int] { echo $adjective $num meet nu }
|
|
> my_command nice 2
|
|
nice 2 meet nu
|
|
```
|