finding files by name
finding by file size
$ find /usr/share/ -size +10M $ find /mostlybig -size -1M # searching for files that are between 500MB and 5GB. $ find /bigdata -size +500M -size -5G -exec du -sh {} \;
finding files by name
finding by file size
$ find /usr/share/ -size +10M $ find /mostlybig -size -1M # searching for files that are between 500MB and 5GB. $ find /bigdata -size +500M -size -5G -exec du -sh {} \;