earl
earl

Reputation: 768

How to find all files with size greater than say 100MB in hdfs through command line?

How can I find all files with size greater than 100MB in hdfs through command line?

Upvotes: 3

Views: 1032

Answers (1)

yoko
yoko

Reputation: 513

you can try this :

hadoop fs find / -type f -size 100 -print \

Upvotes: 2

Related Questions