使用以下输入文件:

rohit
mohit
sohit
34
45
67

我必须创建一个包含以下内容的新文件:
rohit 34
mohit 45
sohit 67

只使用粘贴和sed。有什么办法可以做到的吗?

最佳答案

$ paste -d' ' <(sed '3q' input.txt) <(sed -n '4,$p' input.txt)
rohit   34
mohit   45
sohit   67

关于linux - 交错序列化数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4647382/

10-11 14:54