This is a tool to print directories walked in a BFS style from current location to standard out. I use it in conjunction with fzf to make a quick fuzzy directory navigator.
alias f='breadthwalker 5 | fzf | xargs -I @ sh -c '[ -d @ ] && cd @'
go get https://github.com/tomatosource/breadth-walker
breadthwalker 3 # where 3 is optional max depth, default is 50
- use proper flag system
- ignores to flag rather than hardcoded