Skip to main content
1 of 2
ctac_
  • 2k
  • 1
  • 9
  • 14

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)

ctac_
  • 2k
  • 1
  • 9
  • 14