ubuntu-buildroot/output/build/host-gawk-5.2.0/test/ignrcas4.awk

8 lines
150 B
Awk

BEGIN {
x = "0"
print x+0 # trigger NUMCUR
IGNORECASE = x # should enable ignorecase, since x is a non-null string
y = "aBc"
print (y ~ /abc/)
}