DEV Community

Query Filter
Query Filter

Posted on

find2

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

Top comments (0)