Hi.
I have three .log files.
The first one is general and has the form:
2223411 Subject Comment Address
2243561 Subject Comment Address
The other two have the form:
2223411 Some string
2243561 Some string
I need to take the first file and attach the remaining fields to each file by the first field, which is the id. It should turn out like this:
2223411 Some string Subject Comment Address
2243561 Some string Subject Comment Address
That is, in fact, add everything except the id to each line of the other files by id.
Please tell me if I need to use script processors and write scripts for this. Or can I do this with existing processors correctly?