摘要: #!/bin/bash #1.显示系统版本 check_system_version() { awk '{print $(NF-1)}' /etc/redhat-release } #2.更新yum源 check_yum() { tt=$(awk '{print $(NF-1)}' /etc/red 阅读全文
posted @ 2023-11-08 11:24 普里莫 阅读(19) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash time=`date|awk '{print $3"\\\\/"$2"\\\\/"$6}'` awk '$4~/'"${time}"'/{print $0}' access.log |awk '{ip[$1]++}END{for (i in ip)print i,ip[i]} 阅读全文
posted @ 2023-11-08 11:21 普里莫 阅读(21) 评论(0) 推荐(0) 编辑