正则表达式从文件中提取多行
如何从给定文件“named.conf”中提取两个字段?我想要“区域”和“文件”字段。
zone "example.com" IN {
type master;
file "db.example.com";
allow-query { any; };
allow-update { none; };
allow-transfer { 10.101.100.2; };
};
How can I extract two fields from a given file "named.conf"? I want the fields 'zone' and 'file'.
zone "example.com" IN {
type master;
file "db.example.com";
allow-query { any; };
allow-update { none; };
allow-transfer { 10.101.100.2; };
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能对你有用:
This might work for you:
尝试这个快速& dirty (GNU) AWK 程序(将其另存为
zone-file.awk
):它对我来说如下:
Try this quick & dirty (GNU) AWK program (save it as
zone-file.awk
):It works for me as follows: