awk +适用于 SUN Solaris & 的语法操作系统
需要有关以下内容的帮助,
当我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
众所周知,Solaris 中 /bin /usr/bin 下的某些命令不符合 POSIX 标准。相反,它们在 /usr/xpg4 和类似的层次结构下有其他兼容版本。
因此,在 Solaris 下您只能使用:
在 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:
Under Solaris 10 this works.
简单的方法是使用 nawk 和其余语法
the simple way is to use nawk and the rest syntax