Linux命令-finding files

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 {} \;

 

你可能感兴趣的:(linux,find the files)