如何在 shell/awk 中的第二列中保持前一列为空文件?
可能的重复:
如何在第 n 列中写入awk 中的文件?
例如:
abc
xyz
123
546
input.txt:
asdad
asdad
adghf
dfytr
output.txt:
asdad
asdad
adghf
dfytr
abc
xyz
123
546
Possible Duplicate:
How can I write in nth column of a file in awk?
For example:
abc
xyz
123
546
input.txt:
asdad
asdad
adghf
dfytr
output.txt:
asdad
asdad
adghf
dfytr
abc
xyz
123
546
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
奇怪的请求。您告诉我们您想要什么怎么样,我们不会窃取您的想法,或者也许我们会……
但是假设示例文本位于文本文件中怎么样?
Strange strange request. How about you tell us what you want, we are not going to steal your ideas, or maybe we will..
But presuming example text is in a text file how about
在你的例子中我会这样做:
In your example I would do: