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.................. 33[5;1;31m [PASS] 33[0m". 11 else 12 echo -e "this test .................. 33[31m:5m [FAIL] 33[0m". 13 echo 14 fi