in reply to script to merge files

I wrote a script a while back that does something similar to what you describe: cmpcol.

If your two input files have just the vertical-bar character as the column delimiter (without spaces), then this command line:

cmpcol -i -lb '|' -d '|' file1:2 file2:2
would produce output like this:
goes|go|went|go sees|see|saw|see eats|eat|ate|eat
(that is, if there are in fact just those three lines that involve matching verbs). If the data files have spaces around the vertical bars, just include those in the command-line option values.

Then all you have to do is re-arrange the columns to suit your taste:

cmpcol -i -lb '|' -d '|' file1:2 file2:2 | perl -F'\|' -lape '$_=join +"|",@F[1,0,2]'
(The quote-mark usage above is based on using a bourne/bash shell.)