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: 6 days 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-02T15:37:10.000Z (6 months ago)
- Last Synced: 2025-12-26T09:42:09.994Z (5 months ago)
- Topics: nushell, nushell-plugin, tree, tree-structure
- Language: Rust
- Homepage:
- Size: 51.8 KB
- Stars: 16
- 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
```
