I have two files: one which is the dictionary, and the other one corresponds to the list of words that appear in a transcription. I need to output the words out of vocabulary words. This is:
dict.txt
you
she
apple
banana
strawberry
eat
transcript.txt
you
strawberry
and
banana
<silence>
for
breakfast
So, my desired output would look like this:
and
for
breakfast
<silence>
Is there any command output such words that are not found in the dictionary? thanks in advance!
<silence>
? – Hauke Laging May 12 '18 at 12:11