I am creating executable scripts for gawk using the following # !:
#!/usr/bin/gawk -f
However, if I want to include interval regular expressions, I cannot add --re-interval or -W re-interval to # !.
#!/usr/bin/gawk --re-interval -f
#Above doesn't work
Is there a way for a script to activate this option without command line arguments, or is there a better way to enter arguments to make it work?
I use cygwin if it is important for your solution
source share