Linux查找大文件命令

查看全部超過800M大小的文件的文件名稱bash find . -type f -size +800M 查找超過800M大小文件,並顯示更詳細的文件信息code find . -type f -size +800M  -print0 | xargs -0 ls -l 當須要查找超過800M大小文件,並顯示查找出來文件的具體大小,可使用下面命令排序 find . -type f -size +800
相關文章
相關標籤/搜索