Hi all. Here is an example for my question. I have a text file like this (Edit1):
and a second file like this (Edit2):
Please can somebody help me writing a script which produces the following in a new file:
Thank you.
Code: Select all
Line1 a b b c d
Line2 c d d e
Line3 a b f f
Line4 b d f g
Line5 a c e f
Code: Select all
a
b
f
g
Code: Select all
a Line1 Line3 Line5
b Line1 Line3 Line4
f Line3 Line4 Line5
g Line4