#!/bin/bash
#简单,主要是观察指定字段所处位置和分隔符
cat nowcoder.txt | grep -i "192.168.1.22" | awk '{print $7}' | sort | uniq -c | awk '{print $1,$2}'