nushell/docs/commands/pwd.md
Fernando Herrera dbcadbc12c moved folders
2022-02-07 19:23:12 +00:00

454 B

pwd

Print the current working directory.

-h, --help Display help message.

Examples

> pwd
/home/me/nushell/docs/commands
> pwd | split column "/" | reject Column1 | pivot | reject Column0
───┬──────────
 # │ Column1
───┼──────────
 0 │ home
 1 │ me
 2 │ projects
 3 │ nushell
 4 │ docs
 5 │ commands
───┴──────────