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

猜你喜欢

转载自liqipan.iteye.com/blog/2089319