We have 2 Unicode files. One of them contains lines that are missing in another file. Like so:
1.
2. bbbbbbbbbbbbbbbbb
3.
4. ddddddddddddddddddddd
5. eeeeeeeeeeeeeeeeeeeeeeee
1. aaaaaaaaaaaaaa
2.
3. ccccccccccccccccc
4.
5.
We want to merge them into third file that will contain all lines:
1. aaaaaaaaaaaaaa
2. bbbbbbbbbbbbbbbbb
3. ccccccccccccccccc
4. ddddddddddddddddddddd
5. eeeeeeeeeeeeeeeeeeeeeeee
Notes:
a,b,c,d,e - can be any text.
line numbers are just for illustration purposes, they are not present in actual files.
I created this question with "batch-file" tag, but I am open to any suggestions about how to achieve this. Of course better not to involve something like C++