mirror of
https://github.com/nushell/nushell.git
synced 2024-11-08 17:44:27 +01:00
Add def documentation (#2939)
This commit is contained in:
parent
c5485c6501
commit
f9b0b81eb2
17
docs/commands/def.md
Normal file
17
docs/commands/def.md
Normal file
@ -0,0 +1,17 @@
|
||||
# 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
|
||||
```
|
Loading…
Reference in New Issue
Block a user