mirror of
https://github.com/nushell/nushell
synced 2025-01-01 15:58:55 +00:00
5ca9e12b7f
* Remove EOL whitespace in files other than docs * Break paragraphs into lines See http://rhodesmill.org/brandon/2012/one-sentence-per-line/ for the rationale * Fix various typos * Remove EOL whitespace in docs/commands/*.md
30 lines
1.5 KiB
Markdown
30 lines
1.5 KiB
Markdown
# exit
|
|
|
|
Exits the nu shell. If you have multiple nu shells, use `exit --now` to exit all of them.
|
|
|
|
## Examples
|
|
|
|
```shell
|
|
> exit
|
|
```
|
|
|
|
```
|
|
> shells
|
|
━━━┯━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# │ │ name │ path
|
|
───┼───┼────────────┼─────────────────────────────────────
|
|
0 │ │ filesystem │ /home/jonathanturner/Source/nushell
|
|
1 │ │ filesystem │ /home
|
|
2 │ X │ filesystem │ /usr
|
|
━━━┷━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
> exit
|
|
> shells
|
|
━━━┯━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# │ │ name │ path
|
|
───┼───┼────────────┼─────────────────────────────────────
|
|
0 │ │ filesystem │ /home/jonathanturner/Source/nushell
|
|
1 │ X │ filesystem │ /home
|
|
━━━┷━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
> exit --now
|
|
exits both the shells
|
|
```
|