linux 查看系统版本
cat /etc/issue

uniq
uniq -uc 统计唯一行
uniq -dc 统计重复行

sort
统计IP访问
awk '{print $1}' access.log | sort | uniq -c | sort -k1,1nr
cat /etc/issue
uniq -uc 统计唯一行
uniq -dc 统计重复行
统计IP访问
awk '{print $1}' access.log | sort | uniq -c | sort -k1,1nr
本文标题:Linux 常用命令|配置
本文链接:https://www.haomeiwen.com/subject/cbzicttx.html
网友评论