I have two txt files that every line is an entry. For instance;
#first txt file
Jonathan25
Donald32
Ethan21
mjisgoat
#second txt file
Ethan21
leonardo1111
michalengeloo
Jonathan25
How can I form my code that gives the unique values that exist in the second txt file but do not exist in the first txt file? Actually, first element of second txt file should be compared to all elements of first txt file. Then, if there is no match, I need to see the value. In this case, what I would like to get as a result is "leonardo1111" and "michalengeloo".