2019-10-01 16:10:16 +02:00
|
|
|
# exit
|
|
|
|
|
2019-10-02 03:25:30 +02:00
|
|
|
Exits the nu shell. If you have multiple nu shells, use `exit --now` to exit all of them.
|
2019-10-01 16:10:16 +02:00
|
|
|
|
2020-03-13 18:23:41 +01:00
|
|
|
## Examples
|
2019-10-01 16:10:16 +02:00
|
|
|
|
|
|
|
```shell
|
|
|
|
> exit
|
|
|
|
```
|
|
|
|
|
2020-06-23 20:21:47 +02:00
|
|
|
```shell
|
2019-11-30 02:24:39 +01:00
|
|
|
> shells
|
|
|
|
━━━┯━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
2020-03-13 18:23:41 +01:00
|
|
|
# │ │ name │ path
|
2019-11-30 02:24:39 +01:00
|
|
|
───┼───┼────────────┼─────────────────────────────────────
|
2020-03-13 18:23:41 +01:00
|
|
|
0 │ │ filesystem │ /home/jonathanturner/Source/nushell
|
|
|
|
1 │ │ filesystem │ /home
|
|
|
|
2 │ X │ filesystem │ /usr
|
2019-11-30 02:24:39 +01:00
|
|
|
━━━┷━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
> exit
|
|
|
|
> shells
|
|
|
|
━━━┯━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
2020-03-13 18:23:41 +01:00
|
|
|
# │ │ name │ path
|
2019-11-30 02:24:39 +01:00
|
|
|
───┼───┼────────────┼─────────────────────────────────────
|
2020-03-13 18:23:41 +01:00
|
|
|
0 │ │ filesystem │ /home/jonathanturner/Source/nushell
|
|
|
|
1 │ X │ filesystem │ /home
|
2019-11-30 02:24:39 +01:00
|
|
|
━━━┷━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
> exit --now
|
2019-10-02 03:25:30 +02:00
|
|
|
exits both the shells
|
2019-10-01 16:10:16 +02:00
|
|
|
```
|