file1abcfile2123如何合并两个文件,得到a 1b 2c 3
awk方式 awk 'NR==FNR{a[NR]=$0}NR>FNR{print a[FNR],$0}' file1 file2
paste方式 paste -d " " file1 file2 > result-file