我想从一个文件中剪切两列,并将它们粘贴在第二个文件的末尾.这两个文件具有完全相同的行数
file1.txt
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
file2.txt
a b c d e f g h i j
a b c d e f g h i j
a b c d e f g h i j
a b c d e f g h i j
到目前为止我一直在使用
cut -f9-10 file2.txt | paste file1.txt - > file3.txt
它输出的正是我想要的
1 2 3 4 5 6 7 8 9 10 i j
1 2 3 4 5 6 7 8 9 10 i j
1 2 3 4 5 6 7 8 9 10 i j
但是我不想创建一个新文件,我宁愿将文件1更改为上面的文件.我试过了
cut -f9-10 file2.txt | paste file1.txt -
最佳答案
从moreutils使用海绵!它允许您吸收标准输入并写入文件.也就是说,在管道之后就地替换文件.
原文链接:https://www.f2er.com/linux/441105.htmlcut -f9-10 file2.txt | paste file1.txt - | sponge file1.txt
请注意,您也可以使用带有process substitution的粘贴来执行您正在执行的操作.
$paste -d' ' file1.txt <(awk '{print $(NF-1),$NF}' file2.txt) | sponge file1.txt
$cat file1.txt
1 2 3 4 5 6 7 8 9 10 i j
1 2 3 4 5 6 7 8 9 10 i j
1 2 3 4 5 6 7 8 9 10 i j
这将使用”作为分隔符将file1.txt与file2.txt中的两个最后一列连接起来.