Linux awk 高端命令

指定第一列并按照数据大小做反序排序

du -x --max-depth=1 / | sort -k1 -nr

Linux awk 高端命令

查看inode碎片

find -type f|awk -F / -v OFS=/ '{$NF="";dir[$0]++}END{for(i in dir)print dir[i]""i}'| sort -k1 -nr|head

Linux awk 高端命令

查看所有TCP连接

netstat -nat | awk '/^tcp/{++S[$NF]}END{for (a in s) print a,S[a]}'

上一篇:Python进阶学习_连接操作Redis数据库


下一篇:全排列问题