Create exit command documentation

Partial fix of issue #711
Some parts have been copied from the fish documentation
This commit is contained in:
Shaurya Shubham 2019-10-01 19:40:16 +05:30 committed by GitHub
parent bbb4cc7d5f
commit e62a2509ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
docs/commands/exit.md Normal file
View file

@ -0,0 +1,17 @@
# exit
Exits the nu shell. If STATUS is supplied, it will be converted to an integer and used as the exit code. Otherwise, the exit code will be that of the last command executed.
## Examples
```shell
> exit
```
```shell
> exit 1
```
```shell
> exit 0
```