Specify the lower limit of directory and file size (ex. 500M).
find {directory} -size +{file size} | xargs ls -lh | sort -rn
du {directory} -h -d 1 | sort -h
Recommended Posts