在 gawk 脚本中启用重新间隔
我使用以下 #! 为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的。请参阅 http://hibernia.jakma.org/~paul/awk- faq.html#script-args 了解原因和替代方案。
This isn't possible. See http://hibernia.jakma.org/~paul/awk-faq.html#script-args for the reason and an alternative.