https://github.com/fdncred/nu_plugin_tree
A nushell plugin that transform nushell values into a tree shape
https://github.com/fdncred/nu_plugin_tree
nushell nushell-plugin tree tree-structure
Last synced: 4 months ago
JSON representation
A nushell plugin that transform nushell values into a tree shape
- Host: GitHub
- URL: https://github.com/fdncred/nu_plugin_tree
- Owner: fdncred
- License: mit
- Created: 2025-05-12T17:06:04.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-10-15T16:14:20.000Z (6 months ago)
- Last Synced: 2025-10-16T14:14:01.113Z (6 months ago)
- Topics: nushell, nushell-plugin, tree, tree-structure
- Language: Rust
- Homepage:
- Size: 47.9 KB
- Stars: 14
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nu_plugin_tree
This is a [Nushell](https://nushell.sh/) plugin called "tree". It takes nushell values and transforms them into a tree shape.
## Installing
```nushell
> cargo install --path .
```
## Usage
```nushell
> plugin add ~/.cargo/bin/nu_plugin_tree
> plugin use tree
> tree --help
View the contents of the pipeline as a tree.
Usage:
> tree
Flags:
-h, --help: Display the help message for this command
Examples:
Transform the tabular output into a tree
> scope commands | where name == with-env | tree
Transform the tabular output into a tree
> ls | tree
```
