使用 grep 解析 tnsnames.ora 以提取主机名减去域

发布于 2024-08-04 19:00:56 字数 558 浏览 8 评论 0原文

我有 tnsnames.ora 文件,例如

DB_CONNECTION1=
   (description=
     (address=
         (protocol=tcp)
         (host=myhost1.mydomain.com)
         (port=1234)
      )
      (connect_data=
         (sid=ABCD)
         (sdu=4321)
  )
DB_CONNECTION2=
   (description=
     (address=
         (protocol=tcp)
         (host=myhost2.mydomain.com)
         (port=1234)
      )
      (connect_data=
         (sid=ABCD)
         (sdu=4321)
  )

我需要使用什么正则表达式从密钥主机中提取值 myhost 。

Ouput should be 
myhost1
myhost2

I have tnsnames.ora file like

DB_CONNECTION1=
   (description=
     (address=
         (protocol=tcp)
         (host=myhost1.mydomain.com)
         (port=1234)
      )
      (connect_data=
         (sid=ABCD)
         (sdu=4321)
  )
DB_CONNECTION2=
   (description=
     (address=
         (protocol=tcp)
         (host=myhost2.mydomain.com)
         (port=1234)
      )
      (connect_data=
         (sid=ABCD)
         (sdu=4321)
  )

What regular expression do i need to use to extract the value myhost from the key host.

Ouput should be 
myhost1
myhost2

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

無處可尋 2024-08-11 19:00:56

当 grep 打印整行时,您可以按照如下步骤进行操作:

grep "(host=" tnsnames.ora | cut -f 2 -d '=' | cut -f 1 -d '.'

要将其分解:

  1. grep "(host=" tnsnames.ora -- 查找带有条目 "(host="
  2. cut -f 2 -d '= ' -- 如果除以 '=' 字符,则查找第 2 列中的内容
  3. cut -f 1 -d '.' -- 如果除以 '. 字符,则查找第 1 列中的内容

您可以执行命令链到任何点,以查看中间结果,例如:

grep "(host=" tnsnames.ora | cut -f 2 -d '='

会给您:

myhost1.mydomain.com)
myhost2.mydomain.com)

这样就可以轻松构建命令集来执行此类操作。

As grep prints the whole line, you could do it in steps like:

grep "(host=" tnsnames.ora | cut -f 2 -d '=' | cut -f 1 -d '.'

To break it down:

  1. grep "(host=" tnsnames.ora -- finds all lines with the entry "(host="
  2. cut -f 2 -d '=' -- finds what is in column number 2 if you divide by the '=' character
  3. cut -f 1 -d '.' -- finds what is in column number 1 if you divide by the '.' character

You can execute the chain of commands to any point, to see the intermediate result, like:

grep "(host=" tnsnames.ora | cut -f 2 -d '='

Would give you:

myhost1.mydomain.com)
myhost2.mydomain.com)

That way it's easy to build your set of commands to do this type of thing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文