Quote:
Originally Posted by ripat
Pure awk:
side by side:
Code:
awk 'NR==FNR{a[NR]=$2; next} {print a[FNR], $2}' file1 file2
concatenated on one column:
Code:
awk '{print $2}' file1 file2
|
ripat,
IT WORKS...!
THANKS A LOT !!!
solracq
p.s. also thx to to the ppl who answered my question!