Y
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
qwertyboy
3881 days ago
You guys do realize that most `find` implementations support both the `-ls` and the `-name` flags, right?
find ~/Documents -name somefile -ls
link