I need to replace the $6
from file A
with the $147
from file B
. Can anyone help me with the syntax?
I tried with
cut -d, f6 fileA | paste -d, f157 fileB
but it doesnt work. I tried also
awk '$6 fileA = $157 fileB'
but the syntaxis is wrong.