Hacker News new | ask | show | jobs
by worldeva 1756 days ago
Sounds like you're looking for `find` or `fd`

https://man7.org/linux/man-pages/man1/find.1.html (-mindepth -maxdepth can also be added to make it stricter)

  find some/location -type d -wholename '*/January/Photos'
https://github.com/sharkdp/fd

  fd -p '*/January/Photos' some/location