Shell/Linux 将一个文件中的每两行合并成一行

 

# cat > test.txt
1
2
3
4
5
6


# more test.txt
1
2
3
4
5
6

# xargs -l2 < test.txt | more
1 2
3 4
5 6

posted @ 2021-05-13 19:50  emanlee  阅读(1695)  评论(0编辑  收藏  举报