#!/bin/bash
while read line;do
isThis=$(echo "$line" | grep this | wc -l)
if [ $isThis -eq 0 ];then
echo "$line"
fi
done < nowcoder.txt

#!/bin/bash
while read line;do
isThis=$(echo "$line" | grep this | wc -l)
if [ $isThis -eq 0 ];then
echo "$line"
fi
done < nowcoder.txt