mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
28 lines
454 B
Markdown
28 lines
454 B
Markdown
|
# pwd
|
||
|
|
||
|
Print the current working directory.
|
||
|
|
||
|
`-h`, `--help`
|
||
|
Display help message.
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
```shell
|
||
|
> pwd
|
||
|
/home/me/nushell/docs/commands
|
||
|
```
|
||
|
|
||
|
```shell
|
||
|
> pwd | split column "/" | reject Column1 | pivot | reject Column0
|
||
|
───┬──────────
|
||
|
# │ Column1
|
||
|
───┼──────────
|
||
|
0 │ home
|
||
|
1 │ me
|
||
|
2 │ projects
|
||
|
3 │ nushell
|
||
|
4 │ docs
|
||
|
5 │ commands
|
||
|
───┴──────────
|
||
|
```
|