linux - Output line from file1 if not found in file2 -


i need output lines file1 not found in file2, ideally using linux commandline.

both files uppercase a-z, sorted, per-file unique, , contain 1 word per line. typically, file1 between 5 , 100 lines long, file2 250,000 lines long. processing speed not issue.

grep -vhfxf file1 file2 

works great.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -