指定第一列并按照数据大小做反序排序
du -x --max-depth=1 / | sort -k1 -nr
查看inode碎片
find -type f|awk -F / -v OFS=/ '{$NF="";dir[$0]++}END{for(i in dir)print dir[i]""i}'| sort -k1 -nr|head
查看所有TCP连接
netstat -nat | awk '/^tcp/{++S[$NF]}END{for (a in s) print a,S[a]}'