Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
我在 red hat linux 上使用这个,也许它也可以在 BSD 上工作?
du -sk * | sort -n | awk ' { if ($1 < 1024) { output("K", 1) } else if ($1 < 1048576) { output("M", 1024) } else { output("G", 1048576) } } function output(size, div) { printf "%d%s\t%s\n", ($1/div), size, $2 } '
:或者设置为别名,需要一些引用:
alias dusort='du -sk * | sort -n | awk '\'' { if ($1 < 1024) { output("K", 1) } else if ($1 < 1048576) { output("M", 1024) } else { output("G", 1048576) } } function output(size, div) { printf "%d%s\t%s\n", ($1/div), size, $2 } '\'''
如果您有任何 TB 文件,则需要扩展它...
I use this on red hat linux, maybe it will also work on BSD?:
Or to set up as an alias some quoting is required:
If you have any terabyte files you would need to extend it...
alias dsize='for dir in *; do du -skh $dir; done | sort -n'
提供如下输出(其中 data、img 和 util 是目录):
$ dsize 1.9G data 4.0K getLinkMentionCounts.bash 4.0K img 28K util
Gives output like this (where data, img and util are directories):
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
我在 red hat linux 上使用这个,也许它也可以在 BSD 上工作?
:或者设置为别名,需要一些引用:
如果您有任何 TB 文件,则需要扩展它...
I use this on red hat linux, maybe it will also work on BSD?:
Or to set up as an alias some quoting is required:
If you have any terabyte files you would need to extend it...
提供如下输出(其中 data、img 和 util 是目录):
Gives output like this (where data, img and util are directories):