linux中用find命令找到最大的10個文件

  1.用find找到最大的10個文件。spa       命令: find / -type f -print0 | xargs -0 du -h | sort -rh | head -n 10命令行   find 搜索文件命令 / 在整個/目錄搜索 -type 指定文件類型 f 類型爲普通文件 -print0 標準輸出完整文件名,後跟空字符(null) | 管道符,前的命令給後的命令處理 xar
相關文章
相關標籤/搜索