awk 中的 Shell 变量解释错误

发布于 2024-09-15 05:02:05 字数 511 浏览 6 评论 0原文

在下面的代码中,我尝试将 shell varibale 传递给 awk。但是,当我尝试将其作为 a.sh foo_bar 运行时,打印的输出是“foo is not returned”,而当我将其作为 a.sh bar_bar 运行时,打印的输出是“foo is不稳定”。 awk 有错误还是我在这里做错了什么?

我正在使用 gawk-3.0.3。

#!/bin/awk

model=$1

awk ' {

      match("'$model'", /foo/)
      ismodel=substr("'$model'", RSTART, RLENGTH)
      if (  ismodel != foo ) {
        print  " foo is not declared"
      } else {
        print  " foo is declared"
      }
     }
    ' dummy

dummy 是带有单个空行的文件。

谢谢,

In following code I am trying to pass shell varibale to awk. But when I try to run it as a.sh foo_bar the output printed is "foo is not declared" and when I run it as a.sh bar_bar the output printed is " foo is declared" . Is there a bug in awk or I am doing something wrong here?

I am using gawk-3.0.3.

#!/bin/awk

model=$1

awk ' {

      match("'$model'", /foo/)
      ismodel=substr("'$model'", RSTART, RLENGTH)
      if (  ismodel != foo ) {
        print  " foo is not declared"
      } else {
        print  " foo is declared"
      }
     }
    ' dummy

dummy is file with single blank line.

Thanks,

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

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

发布评论

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

评论(3

前事休说 2024-09-22 05:02:05

您应该使用 AWK 的变量传递而不是复杂的引用:

awk -v awkvar=$shellvar 'BEGIN {print awkvar}'

您的脚本是作为 shell 脚本编写的,但您有一个 AWK shebang 行。您可以将其更改为#!/bin/sh

You should use AWK's variable passing instead of complex quoting:

awk -v awkvar=$shellvar 'BEGIN {print awkvar}'

Your script is written as a shell script, but you have an AWK shebang line. You could change that to #!/bin/sh.

情深缘浅 2024-09-22 05:02:05

这不是错误,而是代码中的错误。有问题的行是:

if (  ismodel != foo ) {

这里 foo 应该是 "foo"。现在您正在与一个空变量进行比较。当您有匹配项时,此值为 false;当您没有匹配项时,此值为 true。所以问题不在于你使用 shell 变量的方式。

但正如其他回答者所说,将参数传递给 awk 的首选方法是使用 -v 开关。当您决定将 awk 脚本放在单独的文件中并防止所有类型的引用问题时,这也将起作用。

我也不确定您对虚拟文件的使用情况。这只是为了举例吗?否则,您应该省略该文件并将所有代码放入 BEGIN {} 块中。

This is not a bug, but an error in your code. The problematic line is:

if (  ismodel != foo ) {

Here foo should be "foo". Right now you are comparing with an empty variable. This gives false when you have a match, and true when you have no match. So the problem is not the way you use the shell variables.

But as the other answerers have said, the preferred way of passing arguments to awk is by using the -v switch. This will also work when you decide to put your awk script in a separate file and prevents all kind of quoting issues.

I'm also not sure about your usage of a dummy file. Is this just for the example? Otherwise you should omit the file and put all your code in the BEGIN {} block.

半城柳色半声笛 2024-09-22 05:02:05

使用 -v 选项从 shell 传入变量

awk -v model="$1" '{
  match(model, /foo/)
   .....
}
' dummy

use -v option to pass in variable from the shell

awk -v model="$1" '{
  match(model, /foo/)
   .....
}
' dummy
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文