Hi,
Perhaps I am misunderstanding how the cuts function works, but according to the documentation if one was to do this:
cuts f1 0 -1 f2
Should lead to 1st & last columns from f1 & last column (last colno seen) from f2.
But given these test data:
f1
a 10
b 12
c 14
f2
i 1
ii 2
iii 3
cuts f1 0 -1 f2
Produces
a 1
b 2
c 3
I thought it would produce
a 10 1
b 12 2
c 14 3
Is this expected? Or a bug?