while IFS= read -r line; do
if grep -Fqx "$line" file2.csv; then
echo "MATCH: $line"
else
echo "NO MATCH: $line"
fi
done < file1.csv
For further actions, you may consider blocking this person and/or reporting abuse
while IFS= read -r line; do
if grep -Fqx "$line" file2.csv; then
echo "MATCH: $line"
else
echo "NO MATCH: $line"
fi
done < file1.csv
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)