NR=cat ./nowcoder.txt|wc -l

for ((a=1;a<=$NR;a++))

do

data=awk -n "NR==$a" ./nowcoder.txt

if [ ! $data ];then

echo $a

fi

done