Motivation
Sometimes when traversing large directories, we want to skip over things like:
Example Usage
erd -I 'node_modules|__pycache__'
That would exclude all entries matching those names.
Optionally:
Would exclude all log or temp files.
This feature exists in the classic tree command:
tree -I 'node_modules|__pycache__'
--
I'm happy to work on this feature if you'd be open to it.