帮助使用 awk 选择行
我有一个如下文件
- 2.54 Ghz val
- 2.53 Ghz val1
- 1.6 Ghz val2
- 800 Mhz val3
- 2.54 Ghz val4
- 2.53 Ghz val5
- 1.6 Ghz val6
- 800 Mhz val7
并且模式继续... 我想提取一个文件 1 中的所有 2.54 Ghz 值和另一个文件 2 中的所有 2.53 Ghz 值 ,file3 中的 1.60 Ghz 值和 file4 中的 800 Mhz 值
有人可以帮助我吗?
I have a file as follows
- 2.54 Ghz val
- 2.53 Ghz val1
- 1.6 Ghz val2
- 800 Mhz val3
- 2.54 Ghz val4
- 2.53 Ghz val5
- 1.6 Ghz val6
- 800 Mhz val7
and the pattern continues ...
I want to extract all 2.54 Ghz values in one file1 and all 2.53 Ghz values in another file2
, 1.60 Ghz values in file3 and 800 Mhz values in file4
can anyone help me with this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
纯狂欢:
Pure Bash: