首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
超過专题
Linux 下找出超過某些容量的檔案
找目前所在位置下,所有檔案大小超過3M的file,並列出檔名:大小 find . -type f -size +3M -exec ls -alh {} \; | awk '{print$9 ":" $5}' -size n[cwbkMG] File uses n units of space. The following suffixes can be used: `b' f
阅读更多...