shell编程题(三十一)

Posted 王清河

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell编程题(三十一)相关的知识,希望对你有一定的参考价值。

题目:

  查看当前连接SYN的IP数

答案:

netstat -an | grep SYN | awk \'{print $5}\' | awk -F: \'{print $1}\' | uniq -c | sort -nr | more

 

运行结果:

以上是关于shell编程题(三十一)的主要内容,如果未能解决你的问题,请参考以下文章

shell编程题(三十)

shell编程题(三十三)

shell编程题(五十一)

shell编程题(三十二)

2018-07-30 第三十二课

linux(三十一)shell脚本基础知识整理