awk +适用于 SUN Solaris & 的语法操作系统

发布于 2024-09-16 19:50:49 字数 356 浏览 8 评论 0原文

需要有关以下内容的帮助,

当我在 linux 上运行以下命令时

  awk -v NAME=MACHINE '$1 == NAME'  /etc/hosts 

它运行良好,但在 SUN Solaris 上我得到以下信息:

 awk -v NAME=MACHINE '$1 == NAME'  /etc/hosts 
 awk: syntax error near line 1
 awk: bailing out near line 1

如何适应以下语法以便也适合 SUN Solaris?或进行更改以适应 Linux 和 SUN Solaris

need help about the following

when I run the following command on linux its run fine

  awk -v NAME=MACHINE '$1 == NAME'  /etc/hosts 

but on SUN Solaris I get the following:

 awk -v NAME=MACHINE '$1 == NAME'  /etc/hosts 
 awk: syntax error near line 1
 awk: bailing out near line 1

how to fit the following syntax in order to fit also SUN Solaris? or change in order to fit both on linux and SUN Solaris

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

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

发布评论

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

评论(2

我ぃ本無心為│何有愛 2024-09-23 19:50:49

众所周知,Solaris 中 /bin /usr/bin 下的某些命令不符合 POSIX 标准。相反,它们在 /usr/xpg4 和类似的层次结构下有其他兼容版本。

因此,在 Solaris 下您只能使用:

/usr/xpg4/bin/awk -v NAME=MACHINE '$1 == NAME'  /etc/hosts 

在 Solaris 10 下这有效。

Solaris is well known for the fact that the some commands under /bin /usr/bin are not POSIX compliant. Instead they have additional compliant versions under /usr/xpg4 and similar hierarchies.

Thus, under Solaris you can use just:

/usr/xpg4/bin/awk -v NAME=MACHINE '$1 == NAME'  /etc/hosts 

Under Solaris 10 this works.

女中豪杰 2024-09-23 19:50:49

简单的方法是使用 nawk 和其余语法

the simple way is to use nawk and the rest syntax

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