利用shell脚本统计文件中出现次数最多的IP

比如有如下文件test.txt

1  134.102.173.43

2  134.102.173.43

3  134.102.171.42

4  134.102.170.9

要统计出现次数最多的IP可以利用以下shell脚本:

cat test.txt | awk '{print $2}' | sort | uniq -c | sort -n -r | head -n 1

上一篇:php的mysqli_connect函数显示 No such file or directory错误以及localhost换成127.0.0.1执行成功


下一篇:anaconda 环境新建/删除/拷贝 jupyter notebook上使用python虚拟环境 TensorFlow