只有2行的情况:sed 'N;s/\n/\t/g' file只有3行的情况:sed 'N;N;s/\n/\t/g' filexargs -n2 <file(不适用于每行多列的情况)
如果有n行,每行不只一列:awk '{if(NR%2==0)print ;else printf "\t"}' file #2行并为1行awk '{if(NR%3==0)print ;else printf "\t"}' file #3行并为1行
原文转自:http://www.ltesting.net