gpt4 book ai didi

linux - 使用shell脚本将两个文件的内容合并到一个文件中

转载 作者:IT王子 更新时间:2023-10-29 00:47:38 25 4
gpt4 key购买 nike

文件A:

1
3
5
7

文件 B:

2
4
6
8

是否可以在 shell 脚本中使用文件 A 和文件 B 作为输入,并获得文件 C 的输出,其内容如下:

1
2
3
4
5
6
7
8

最佳答案

使用 paste 以找到的确切顺序交错行:

paste -d '\n' filea fileb

或者使用sort对文件进行合并和排序:

sort filea fileb

关于linux - 使用shell脚本将两个文件的内容合并到一个文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18596488/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com