在 gawk 脚本中启用重新间隔

发布于 2024-10-20 15:56:06 字数 368 浏览 1 评论 0原文

我使用以下 #! 为 gawk 创建可执行脚本:

#!/usr/bin/gawk -f

但是,如果我想启用间隔正则表达式,我似乎无法在 #! 中添加 --re-interval-W re-interval

#!/usr/bin/gawk --re-interval -f
#以上不起作用

有没有办法让脚本在没有命令行参数的情况下激活此选项,或者更好的方法输入参数的方法使其有效?

如果这对您的解决方案很重要,我正在使用 cygwin

I create executable scripts for gawk by using the following #!:

#!/usr/bin/gawk -f

However if I want to enable interval regular expressions I cannot seem to add --re-interval or -W re-interval in the #!.

#!/usr/bin/gawk --re-interval -f
#Above doesn't work

Is there a way to have a script activate this option without command line arguments, or a better way to enter the arguments so it works?

I am using cygwin if that matters for your solution

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

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

发布评论

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

评论(1

请别遗忘我 2024-10-27 15:56:06

这是不可能的。请参阅 http://hibernia.jakma.org/~paul/awk- faq.html#script-args 了解原因和替代方案。

如何将选项传递给 AWK
爆炸路径?

简短的回答是你不能,
因为内核不会解析
bang-path 超过脚本名称。
该行的其余部分作为
第二个参数中的单个字符串。
即这不会工作:

#!/path/to/gawk --posix --re-interval -f

...awk 脚本..

相反,使用 shell 脚本,例如:

#!/bin/bash

gawk --posix --re-interval -v foo=$1 '
BEGIN { print foo } '

This isn't possible. See http://hibernia.jakma.org/~paul/awk-faq.html#script-args for the reason and an alternative.

How do I pass options to AWK in a
bang-path?

Short answer is that you can't,
because the kernel won't parse a
bang-path past the name of the script.
The rest of the line is passed as a
single string, in the second argument.
I.e. this won't work:

#!/path/to/gawk --posix --re-interval -f

....awk script..

Instead, use a shell script, e.g.:

#!/bin/bash

gawk --posix --re-interval -v foo=$1 '
BEGIN { print foo } '

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