1 #!/bin/bash
2 ###############################################################
3 #Author :Bing #
4 #Create Time:11/26/2019 #
5 ###############################################################
6 awk '{if(NR%2==0) {print($1)}}' vendor_serial_num.log > temp.log #隔行打印到log
7 row=`sort temp.log|uniq -d` #-d表示仅显示重复行,-u仅显示不重复行
8 echo $row
9 if [[ -z "$row" ]];then #判断重复行变量row是否为空,=0表示true
10 echo -e "this test..................\033[5;1;31m [PASS] \033[0m".
11 else
12 echo -e "this test ..................\033[31m:5m [FAIL] \033[0m".
13 echo
14 fi