标签:lin code font 一起 span strong cat 拼接 ast
paste 按列拼接文本
将两个文本按列拼接到一起;
cat file1 1 2
cat file2
colin
book
paste file1 file2 1 colin 2 book
默认的定界符是制表符,可以用-d指明定界符::
paste file1 file2 -d "," 1,colin 2,book
标签:lin code font 一起 span strong cat 拼接 ast
原文地址:https://www.cnblogs.com/ggzhangxiaochao/p/13385363.html