For example:
abc xyz 123 546
input.txt:
asdad asdad adghf dfytr
I wanted to add the above column in 2nd c
In awk:
awk 'NR==FNR {x[NR] = $0} NR != FNR {print x[FNR], $0}' col1_file col2_file
Though its probably better to use paste