ls and tree combined. ```bash Usage: lstree [OPTIONS] [File]...
Arguments: [File]... The target file(s) or directories [default: ./]
Options:
-b, --block-size
-a, --all
-d, --dir-only
-r, --reverse
-p, --print-all-file
-e, --exclude
Exclude file or directory
bash
lstree -e target
Exclude more complex regex
bash
lstree -e "(target)|(.rs)"
Make file tree grepable. Will print full paths seperated by spaces.
```bash
lstree -e "target"
lstree -p -e "target"
lstree -p -e "target" | grep main
```