用于转换列表的 Ksh 脚本
应用一些命令后,我有一个数据集如下
graph_name=abc
group_name=def
factory=xyz
export a=1
export b=2
export c=3
,现在我如何实现以下输出,
graph_name=abc
export a=1
export b=2
export c=3
除了包含记录的 graph_name 之外,我还需要所有导出语句。
After applying some commands I have a data set as below
graph_name=abc
group_name=def
factory=xyz
export a=1
export b=2
export c=3
Now how can i acheieve the below output
graph_name=abc
export a=1
export b=2
export c=3
I need all the export statements in addition with just graph_name containing record.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(4)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
默认情况下不打印 (
-n
);然后它显式地打印那些与您想要的内容相匹配的行。This doesn't print by default (
-n
); it then explicitly prints those lines that match what you want.