centos下查找大文件命令

查找大于1G的文件的命令:

find / -type f -size +1024000k -exec du -h {} \;

centos 命令