You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
The glob option covers most cases but not all.
If i could use erdtree in combination with fd, the following would be possible fd -e rs '^hel[lL]o' | et
Thanks for this great tool !!!
The text was updated successfully, but these errors were encountered:
This can be done. I won't be able to include this in tomorrow's minor release but I'll aim to implement it and include it in next week's minor release (March 19th).
as requested in issue solidiquis#51
This adds a new (hidden) flag `--stdin` to indicate that `et` should
take input from stdin. Since the naming convention is to use `-` for
this, we replace the args `-` with `--stdin` before we hand them over
to Clap.
Example usage:
```shell
$ touch hello.rs helLo.rs HELlo.rs
$ fd -e rs '^hel[lL]o' | et -
erdtree
0 B ├─ hello.rs
0 B └─ helLo.rs
```
Hi,
The glob option covers most cases but not all.
If i could use erdtree in combination with fd, the following would be possible
fd -e rs '^hel[lL]o' | et
Thanks for this great tool !!!
The text was updated successfully, but these errors were encountered: