A journal to record my notes and ideas related to software development and computing
find . -size +10000k
find . -size +10Mor if you want to get fancy...find . -size +10M -printf "%h/%-40f %k Kb\n"
Yes, I'm not sure what I was thinking by using 'k' instead of 'm'.I like the formatted output version too.
Post a Comment
2 comments:
find . -size +10M
or if you want to get fancy...
find . -size +10M -printf "%h/%-40f %k Kb\n"
Yes, I'm not sure what I was thinking by using 'k' instead of 'm'.
I like the formatted output version too.
Post a Comment