[chqiu@slc08aei ~/study]$ cat a.txt
1
2
3
[chqiu@slc08aei ~/study]$ cat b.txt
4
5
[chqiu@slc08aei ~/study]$ paste -d "\n" a.txt b.txt
1
4
2
5
3
[chqiu@slc08aei ~/study]$ paste -d "\n" -s a.txt b.txt
1
2
3
4
5
[chqiu@slc08aei ~/study]$ paste a.txt b.txt
1 4
2 5
3
-d 指定不同于空格或tab键的域分隔符。例如用@分隔域,使用- d @。
-s 将每个文件合并成行而不是按行粘贴。
Reference:
http://blog.csdn.net/wdzxl198/article/details/11960935
http://blog.csdn.net/andy572633/article/details/7214126
http://www.runoob.com/linux/linux-comm-paste.html