Hacker News new | ask | show | jobs
by nurb 3881 days ago

   ls -lh $(find ~/Documents | grep "somefileiwant")
It's all you should ever need.
1 comments

You guys do realize that most `find` implementations support both the `-ls` and the `-name` flags, right?

    find ~/Documents -name somefile -ls