repositorypackage
1.1.46609138
Repository: https://github.com/homburg/tree.git
Documentation: pkg.go.dev
# README
tree
Wraps $ tree
with a pipable version.
Usage
# Regular tree still works:
$ tree
# =>
# .
# ├── tmp
# └── src
# └── linux_amd64
# └── github.com
# └── homburg
# ├── cli.a
# └── envoke.a
# Pipable tree
$ find pkg | tree "/"
# .
# └── pkg
# └── linux_amd64
# └── github.com
# └── homburg
# ├── cli.a
# └── envoke.a
$ git ls-files | tree
# .travis.yml
# LICENSE
# Makefile
# README.md
# cmd
# └── tree
# ├── README.md
# └── main.go
# data.csv
# files.txt
# tree.go
# tree_test.go