I'm trying to run a grep command that compares the text from two files and prints out all the names in one that do not appear in the other but am uncertain as to whether the concatenation of switches is right:
grep -F -f -v old.txt old&new.txt > just_new.txt
Thoughts?
grep -F -f -v old.txt old&new.txt > just_new.txt
Thoughts?