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