Reputation: 768
How can I find all files with size greater than 100MB in hdfs through command line?
Upvotes: 3
Views: 1032
Reputation: 513
you can try this :
hadoop fs find / -type f -size 100 -print \
Upvotes: 2