查找系統大文件

1.查找linux 根目錄大於1G的文件 find / -type f -size +1G 2.找出根目錄所有大於1G的文件,並列出每個文件真實大小 find / -type f -size +1G -print0 | xargs -0 du -h 3. [[email protected] u03]# find . -type f -size +800M -print0 | xargs -0 l
相關文章
相關標籤/搜索