awk以‘ ’为分隔符区分列
cat logs | grep IconsendRedirect | grep 1752 | awk -F' ' '{print $8}'| wc -l
awk过滤统计不重复的行
cat hello.txt | awk '!a[$0]++' | wc -l