概述
找目前所在位置下,所有檔案大小超過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' for 512-byte blocks (this is the default if no suffix is used)
`c' for bytes
`w' for two-byte words
`k' for Kilobytes (units of 1024 bytes)
`M' for Megabytes (units of 1048576 bytes)
`G' for Gigabytes (units of 1073741824 bytes)
最后
以上就是高高朋友为你收集整理的Linux 下找出超過某些容量的檔案的全部内容,希望文章能够帮你解决Linux 下找出超過某些容量的檔案所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复