You can use grep
grep -F -f 'File2' -v 'File1'
Pattern of fixed--strings (-F) in File2 (-f)
find similar line and inverse with (-v)
You can use grep
grep -F -f 'File2' -v 'File1'
Pattern of fixed--strings (-F) in File2 (-f)
find similar line and inverse with (-v)