使用脚本连接另一个文件的同一行中的一个文件

时间:2017-08-30 06:39:59

标签: bash shell scripting

cat test1.txt

abc

cat test2.txt

def

我有上面两个文件,并尝试将test2.txt附加到test1.txt但是每次添加到新行时,我都试图从网上找到解决方案但是无法得到正确答案请告诉我如果有人能帮助我找到解决方案

我想要这种格式的输出 输出:test1.txt文件中的"abc,def"

使用cat和echo命令尝试使用web中提供的可能解决方案,但它无法正常工作

1 个答案:

答案 0 :(得分:4)

[akshay@localhost tmp]$ cat test1
abc

[akshay@localhost tmp]$ cat test2
def

[akshay@localhost tmp]$ paste -d "," test1 test2
abc,def

[akshay@localhost tmp]$ pr -mtJS"," test1 test2
abc,def