我有两个文件想要合并,其中一个文件是:
linux$ cat temp2
linear_0_A_B linear_0_B_A
103027.244444 102714.177778
103464.311111 102876.266667
103687.422222 103072.711111
103533.244444 102967.733333
103545.066667 102916.933333
103621.555556 103027.511111
104255.776536 103006.256983
103712.178771 102877.139665
103817.555556 103198.488889
103701.422222 103133.200000
另一个文件是:
linux$ cat temp
linear_1_A_B linear_1_B_A
118620.444444 109212.355556
108408.488889 105744.444444
108136.311111 105174.933333
108627.688889 105390.044444
108356.577778 105412.888889
108559.204420 105667.933702
108469.392265 105547.314917
109032.044693 105497.698324
108925.866667 105986.222222
107975.733333 105070.000000
我想将 temp 中的列粘贴到 temp2 中,并保留 temp2 文件,如下所示:
linux$ paste temp2 temp
linear_0_A_B linear_0_B_A linear_1_A_B linear_1_B_A
103027.244444 102714.177778 118620.444444 109212.355556
103464.311111 102876.266667 108408.488889 105744.444444
103687.422222 103072.711111 108136.311111 105174.933333
103533.244444 102967.733333 108627.688889 105390.044444
103545.066667 102916.933333 108356.577778 105412.888889
103621.555556 103027.511111 108559.204420 105667.933702
104255.776536 103006.256983 108469.392265 105547.314917
103712.178771 102877.139665 109032.044693 105497.698324
103817.555556 103198.488889 108925.866667 105986.222222
103701.422222 103133.200000 107975.733333 105070.000000
但是当我进行标准输出并显示 temp2 时,结果不一样。
linux$ paste temp2 temp > temp2
linux$ cat temp2
linear_1_A_B linear_1_B_A
118620.444444 109212.355556
108408.488889 105744.444444
108136.311111 105174.933333
108627.688889 105390.044444
108356.577778 105412.888889
108559.204420 105667.933702
108469.392265 105547.314917
109032.044693 105497.698324
108925.866667 105986.222222
107975.733333 105070.000000
怎么解决??
答案1
你在最后一个区块中写道,
linux$ paste temp2 temp > temp2
你不可以做这个。 (好吧,你可以,但它不会工作。)这里发生的情况是 shell 截断temp2
准备发送paste
命令的输出。然后命令paste temp2 temp
运行 - 但到此阶段temp2
长度已经为零。
您可以做的是,它使用第三个文件来收集输出,然后temp2
用其内容替换您。确保仅在“成功”&&
时才替换内容,并且在未触发或以某种意外方式失败时删除临时文件。paste
rm -f
temp3
mv
paste temp2 temp > temp3 && mv -f temp3 temp2
rm -f temp3