1*9a7741deSElliott Hughes 2*9a7741deSElliott Hughes### BEGIN{foo=6;print foo/2}: 3*9a7741deSElliott Hughes3 4*9a7741deSElliott Hughes 5*9a7741deSElliott Hughes### BEGIN{foo=10;foo/=2;print foo}: 6*9a7741deSElliott Hughes5 7*9a7741deSElliott Hughes 8*9a7741deSElliott Hughes### /=/ {print $0}: 9*9a7741deSElliott Hughesfoo=bar 10*9a7741deSElliott Hughesfoo==bar 11*9a7741deSElliott Hughesfoo+=bar 12*9a7741deSElliott Hughesfoo-=bar 13*9a7741deSElliott Hughesfoo*=bar 14*9a7741deSElliott Hughesfoo/=bar 15*9a7741deSElliott Hughesfoo^=bar 16*9a7741deSElliott Hughesfoo%=bar 17*9a7741deSElliott Hughesfoo!=bar 18*9a7741deSElliott Hughesfoo<=bar 19*9a7741deSElliott Hughesfoo>=bar 20*9a7741deSElliott Hughesfoo=bar=fribble 21*9a7741deSElliott Hughes=foo=bar 22*9a7741deSElliott Hughes 23*9a7741deSElliott Hughes### /==/ {print $0}: 24*9a7741deSElliott Hughesfoo==bar 25*9a7741deSElliott Hughes 26*9a7741deSElliott Hughes### /+=/ {print $0}: 27*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 28*9a7741deSElliott Hughes source line number 1 29*9a7741deSElliott Hughes context is 30*9a7741deSElliott Hughes >>> /+=/ <<< 31*9a7741deSElliott Hughes 32*9a7741deSElliott Hughes### /*=/ {print $0}: 33*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 34*9a7741deSElliott Hughes source line number 1 35*9a7741deSElliott Hughes context is 36*9a7741deSElliott Hughes >>> /*=/ <<< 37*9a7741deSElliott Hughes 38*9a7741deSElliott Hughes### /-=/ {print $0}: 39*9a7741deSElliott Hughesfoo-=bar 40*9a7741deSElliott Hughes 41*9a7741deSElliott Hughes### //=/ {print $0}: 42*9a7741deSElliott Hughes../a.out: empty regular expression 43*9a7741deSElliott Hughes source line number 1 44*9a7741deSElliott Hughes context is 45*9a7741deSElliott Hughes >>> // <<< 46*9a7741deSElliott Hughes 47*9a7741deSElliott Hughes### /%=/ {print $0}: 48*9a7741deSElliott Hughesfoo%=bar 49*9a7741deSElliott Hughes 50*9a7741deSElliott Hughes### /^=/ {print $0}: 51*9a7741deSElliott Hughes=foo=bar 52*9a7741deSElliott Hughes 53*9a7741deSElliott Hughes### /\/=/ {print $0}: 54*9a7741deSElliott Hughesfoo/=bar 55*9a7741deSElliott Hughes 56*9a7741deSElliott Hughes### /!=/ {print $0}: 57*9a7741deSElliott Hughesfoo!=bar 58*9a7741deSElliott Hughes 59*9a7741deSElliott Hughes### /<=/ {print $0}: 60*9a7741deSElliott Hughesfoo<=bar 61*9a7741deSElliott Hughes 62*9a7741deSElliott Hughes### />=/ {print $0}: 63*9a7741deSElliott Hughesfoo>=bar 64*9a7741deSElliott Hughes 65*9a7741deSElliott Hughes### !/=/ {print $0}: 66*9a7741deSElliott Hughesfoo+bar 67*9a7741deSElliott Hughesfoo bar 68*9a7741deSElliott Hughesfoo/bar 69*9a7741deSElliott Hughes 70*9a7741deSElliott Hughes 71*9a7741deSElliott Hughes### !/==/ {print $0}: 72*9a7741deSElliott Hughesfoo=bar 73*9a7741deSElliott Hughesfoo+bar 74*9a7741deSElliott Hughesfoo+=bar 75*9a7741deSElliott Hughesfoo-=bar 76*9a7741deSElliott Hughesfoo*=bar 77*9a7741deSElliott Hughesfoo/=bar 78*9a7741deSElliott Hughesfoo^=bar 79*9a7741deSElliott Hughesfoo%=bar 80*9a7741deSElliott Hughesfoo!=bar 81*9a7741deSElliott Hughesfoo<=bar 82*9a7741deSElliott Hughesfoo>=bar 83*9a7741deSElliott Hughesfoo bar 84*9a7741deSElliott Hughesfoo/bar 85*9a7741deSElliott Hughesfoo=bar=fribble 86*9a7741deSElliott Hughes=foo=bar 87*9a7741deSElliott Hughes 88*9a7741deSElliott Hughes 89*9a7741deSElliott Hughes### !/+=/ {print $0}: 90*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 91*9a7741deSElliott Hughes source line number 1 92*9a7741deSElliott Hughes context is 93*9a7741deSElliott Hughes >>> !/+=/ <<< 94*9a7741deSElliott Hughes 95*9a7741deSElliott Hughes### !/*=/ {print $0}: 96*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 97*9a7741deSElliott Hughes source line number 1 98*9a7741deSElliott Hughes context is 99*9a7741deSElliott Hughes >>> !/*=/ <<< 100*9a7741deSElliott Hughes 101*9a7741deSElliott Hughes### !/-=/ {print $0}: 102*9a7741deSElliott Hughesfoo=bar 103*9a7741deSElliott Hughesfoo==bar 104*9a7741deSElliott Hughesfoo+bar 105*9a7741deSElliott Hughesfoo+=bar 106*9a7741deSElliott Hughesfoo*=bar 107*9a7741deSElliott Hughesfoo/=bar 108*9a7741deSElliott Hughesfoo^=bar 109*9a7741deSElliott Hughesfoo%=bar 110*9a7741deSElliott Hughesfoo!=bar 111*9a7741deSElliott Hughesfoo<=bar 112*9a7741deSElliott Hughesfoo>=bar 113*9a7741deSElliott Hughesfoo bar 114*9a7741deSElliott Hughesfoo/bar 115*9a7741deSElliott Hughesfoo=bar=fribble 116*9a7741deSElliott Hughes=foo=bar 117*9a7741deSElliott Hughes 118*9a7741deSElliott Hughes 119*9a7741deSElliott Hughes### !//=/ {print $0}: 120*9a7741deSElliott Hughes../a.out: empty regular expression 121*9a7741deSElliott Hughes source line number 1 122*9a7741deSElliott Hughes context is 123*9a7741deSElliott Hughes >>> !// <<< 124*9a7741deSElliott Hughes 125*9a7741deSElliott Hughes### !/%=/ {print $0}: 126*9a7741deSElliott Hughesfoo=bar 127*9a7741deSElliott Hughesfoo==bar 128*9a7741deSElliott Hughesfoo+bar 129*9a7741deSElliott Hughesfoo+=bar 130*9a7741deSElliott Hughesfoo-=bar 131*9a7741deSElliott Hughesfoo*=bar 132*9a7741deSElliott Hughesfoo/=bar 133*9a7741deSElliott Hughesfoo^=bar 134*9a7741deSElliott Hughesfoo!=bar 135*9a7741deSElliott Hughesfoo<=bar 136*9a7741deSElliott Hughesfoo>=bar 137*9a7741deSElliott Hughesfoo bar 138*9a7741deSElliott Hughesfoo/bar 139*9a7741deSElliott Hughesfoo=bar=fribble 140*9a7741deSElliott Hughes=foo=bar 141*9a7741deSElliott Hughes 142*9a7741deSElliott Hughes 143*9a7741deSElliott Hughes### !/^=/ {print $0}: 144*9a7741deSElliott Hughesfoo=bar 145*9a7741deSElliott Hughesfoo==bar 146*9a7741deSElliott Hughesfoo+bar 147*9a7741deSElliott Hughesfoo+=bar 148*9a7741deSElliott Hughesfoo-=bar 149*9a7741deSElliott Hughesfoo*=bar 150*9a7741deSElliott Hughesfoo/=bar 151*9a7741deSElliott Hughesfoo^=bar 152*9a7741deSElliott Hughesfoo%=bar 153*9a7741deSElliott Hughesfoo!=bar 154*9a7741deSElliott Hughesfoo<=bar 155*9a7741deSElliott Hughesfoo>=bar 156*9a7741deSElliott Hughesfoo bar 157*9a7741deSElliott Hughesfoo/bar 158*9a7741deSElliott Hughesfoo=bar=fribble 159*9a7741deSElliott Hughes 160*9a7741deSElliott Hughes 161*9a7741deSElliott Hughes### !/\/=/ {print $0}: 162*9a7741deSElliott Hughesfoo=bar 163*9a7741deSElliott Hughesfoo==bar 164*9a7741deSElliott Hughesfoo+bar 165*9a7741deSElliott Hughesfoo+=bar 166*9a7741deSElliott Hughesfoo-=bar 167*9a7741deSElliott Hughesfoo*=bar 168*9a7741deSElliott Hughesfoo^=bar 169*9a7741deSElliott Hughesfoo%=bar 170*9a7741deSElliott Hughesfoo!=bar 171*9a7741deSElliott Hughesfoo<=bar 172*9a7741deSElliott Hughesfoo>=bar 173*9a7741deSElliott Hughesfoo bar 174*9a7741deSElliott Hughesfoo/bar 175*9a7741deSElliott Hughesfoo=bar=fribble 176*9a7741deSElliott Hughes=foo=bar 177*9a7741deSElliott Hughes 178*9a7741deSElliott Hughes 179*9a7741deSElliott Hughes### !/!=/ {print $0}: 180*9a7741deSElliott Hughesfoo=bar 181*9a7741deSElliott Hughesfoo==bar 182*9a7741deSElliott Hughesfoo+bar 183*9a7741deSElliott Hughesfoo+=bar 184*9a7741deSElliott Hughesfoo-=bar 185*9a7741deSElliott Hughesfoo*=bar 186*9a7741deSElliott Hughesfoo/=bar 187*9a7741deSElliott Hughesfoo^=bar 188*9a7741deSElliott Hughesfoo%=bar 189*9a7741deSElliott Hughesfoo<=bar 190*9a7741deSElliott Hughesfoo>=bar 191*9a7741deSElliott Hughesfoo bar 192*9a7741deSElliott Hughesfoo/bar 193*9a7741deSElliott Hughesfoo=bar=fribble 194*9a7741deSElliott Hughes=foo=bar 195*9a7741deSElliott Hughes 196*9a7741deSElliott Hughes 197*9a7741deSElliott Hughes### !/<=/ {print $0}: 198*9a7741deSElliott Hughesfoo=bar 199*9a7741deSElliott Hughesfoo==bar 200*9a7741deSElliott Hughesfoo+bar 201*9a7741deSElliott Hughesfoo+=bar 202*9a7741deSElliott Hughesfoo-=bar 203*9a7741deSElliott Hughesfoo*=bar 204*9a7741deSElliott Hughesfoo/=bar 205*9a7741deSElliott Hughesfoo^=bar 206*9a7741deSElliott Hughesfoo%=bar 207*9a7741deSElliott Hughesfoo!=bar 208*9a7741deSElliott Hughesfoo>=bar 209*9a7741deSElliott Hughesfoo bar 210*9a7741deSElliott Hughesfoo/bar 211*9a7741deSElliott Hughesfoo=bar=fribble 212*9a7741deSElliott Hughes=foo=bar 213*9a7741deSElliott Hughes 214*9a7741deSElliott Hughes 215*9a7741deSElliott Hughes### !/>=/ {print $0}: 216*9a7741deSElliott Hughesfoo=bar 217*9a7741deSElliott Hughesfoo==bar 218*9a7741deSElliott Hughesfoo+bar 219*9a7741deSElliott Hughesfoo+=bar 220*9a7741deSElliott Hughesfoo-=bar 221*9a7741deSElliott Hughesfoo*=bar 222*9a7741deSElliott Hughesfoo/=bar 223*9a7741deSElliott Hughesfoo^=bar 224*9a7741deSElliott Hughesfoo%=bar 225*9a7741deSElliott Hughesfoo!=bar 226*9a7741deSElliott Hughesfoo<=bar 227*9a7741deSElliott Hughesfoo bar 228*9a7741deSElliott Hughesfoo/bar 229*9a7741deSElliott Hughesfoo=bar=fribble 230*9a7741deSElliott Hughes=foo=bar 231*9a7741deSElliott Hughes 232*9a7741deSElliott Hughes 233*9a7741deSElliott Hughes### $0~/=/ {print $0}: 234*9a7741deSElliott Hughesfoo=bar 235*9a7741deSElliott Hughesfoo==bar 236*9a7741deSElliott Hughesfoo+=bar 237*9a7741deSElliott Hughesfoo-=bar 238*9a7741deSElliott Hughesfoo*=bar 239*9a7741deSElliott Hughesfoo/=bar 240*9a7741deSElliott Hughesfoo^=bar 241*9a7741deSElliott Hughesfoo%=bar 242*9a7741deSElliott Hughesfoo!=bar 243*9a7741deSElliott Hughesfoo<=bar 244*9a7741deSElliott Hughesfoo>=bar 245*9a7741deSElliott Hughesfoo=bar=fribble 246*9a7741deSElliott Hughes=foo=bar 247*9a7741deSElliott Hughes 248*9a7741deSElliott Hughes### $0~/==/ {print $0}: 249*9a7741deSElliott Hughesfoo==bar 250*9a7741deSElliott Hughes 251*9a7741deSElliott Hughes### $0~/+=/ {print $0}: 252*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 253*9a7741deSElliott Hughes source line number 1 254*9a7741deSElliott Hughes context is 255*9a7741deSElliott Hughes >>> $0~/+=/ <<< 256*9a7741deSElliott Hughes 257*9a7741deSElliott Hughes### $0~/*=/ {print $0}: 258*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 259*9a7741deSElliott Hughes source line number 1 260*9a7741deSElliott Hughes context is 261*9a7741deSElliott Hughes >>> $0~/*=/ <<< 262*9a7741deSElliott Hughes 263*9a7741deSElliott Hughes### $0~/-=/ {print $0}: 264*9a7741deSElliott Hughesfoo-=bar 265*9a7741deSElliott Hughes 266*9a7741deSElliott Hughes### $0~//=/ {print $0}: 267*9a7741deSElliott Hughes../a.out: empty regular expression 268*9a7741deSElliott Hughes source line number 1 269*9a7741deSElliott Hughes context is 270*9a7741deSElliott Hughes >>> $0~// <<< 271*9a7741deSElliott Hughes 272*9a7741deSElliott Hughes### $0~/%=/ {print $0}: 273*9a7741deSElliott Hughesfoo%=bar 274*9a7741deSElliott Hughes 275*9a7741deSElliott Hughes### $0~/^=/ {print $0}: 276*9a7741deSElliott Hughes=foo=bar 277*9a7741deSElliott Hughes 278*9a7741deSElliott Hughes### $0~/\/=/ {print $0}: 279*9a7741deSElliott Hughesfoo/=bar 280*9a7741deSElliott Hughes 281*9a7741deSElliott Hughes### $0~/!=/ {print $0}: 282*9a7741deSElliott Hughesfoo!=bar 283*9a7741deSElliott Hughes 284*9a7741deSElliott Hughes### $0~/<=/ {print $0}: 285*9a7741deSElliott Hughesfoo<=bar 286*9a7741deSElliott Hughes 287*9a7741deSElliott Hughes### $0~/>=/ {print $0}: 288*9a7741deSElliott Hughesfoo>=bar 289*9a7741deSElliott Hughes 290*9a7741deSElliott Hughes### $0!~/=/ {print $0}: 291*9a7741deSElliott Hughesfoo+bar 292*9a7741deSElliott Hughesfoo bar 293*9a7741deSElliott Hughesfoo/bar 294*9a7741deSElliott Hughes 295*9a7741deSElliott Hughes 296*9a7741deSElliott Hughes### $0!~/==/ {print $0}: 297*9a7741deSElliott Hughesfoo=bar 298*9a7741deSElliott Hughesfoo+bar 299*9a7741deSElliott Hughesfoo+=bar 300*9a7741deSElliott Hughesfoo-=bar 301*9a7741deSElliott Hughesfoo*=bar 302*9a7741deSElliott Hughesfoo/=bar 303*9a7741deSElliott Hughesfoo^=bar 304*9a7741deSElliott Hughesfoo%=bar 305*9a7741deSElliott Hughesfoo!=bar 306*9a7741deSElliott Hughesfoo<=bar 307*9a7741deSElliott Hughesfoo>=bar 308*9a7741deSElliott Hughesfoo bar 309*9a7741deSElliott Hughesfoo/bar 310*9a7741deSElliott Hughesfoo=bar=fribble 311*9a7741deSElliott Hughes=foo=bar 312*9a7741deSElliott Hughes 313*9a7741deSElliott Hughes 314*9a7741deSElliott Hughes### $0!~/+=/ {print $0}: 315*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 316*9a7741deSElliott Hughes source line number 1 317*9a7741deSElliott Hughes context is 318*9a7741deSElliott Hughes >>> $0!~/+=/ <<< 319*9a7741deSElliott Hughes 320*9a7741deSElliott Hughes### $0!~/*=/ {print $0}: 321*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 322*9a7741deSElliott Hughes source line number 1 323*9a7741deSElliott Hughes context is 324*9a7741deSElliott Hughes >>> $0!~/*=/ <<< 325*9a7741deSElliott Hughes 326*9a7741deSElliott Hughes### $0!~/-=/ {print $0}: 327*9a7741deSElliott Hughesfoo=bar 328*9a7741deSElliott Hughesfoo==bar 329*9a7741deSElliott Hughesfoo+bar 330*9a7741deSElliott Hughesfoo+=bar 331*9a7741deSElliott Hughesfoo*=bar 332*9a7741deSElliott Hughesfoo/=bar 333*9a7741deSElliott Hughesfoo^=bar 334*9a7741deSElliott Hughesfoo%=bar 335*9a7741deSElliott Hughesfoo!=bar 336*9a7741deSElliott Hughesfoo<=bar 337*9a7741deSElliott Hughesfoo>=bar 338*9a7741deSElliott Hughesfoo bar 339*9a7741deSElliott Hughesfoo/bar 340*9a7741deSElliott Hughesfoo=bar=fribble 341*9a7741deSElliott Hughes=foo=bar 342*9a7741deSElliott Hughes 343*9a7741deSElliott Hughes 344*9a7741deSElliott Hughes### $0!~//=/ {print $0}: 345*9a7741deSElliott Hughes../a.out: empty regular expression 346*9a7741deSElliott Hughes source line number 1 347*9a7741deSElliott Hughes context is 348*9a7741deSElliott Hughes >>> $0!~// <<< 349*9a7741deSElliott Hughes 350*9a7741deSElliott Hughes### $0!~/%=/ {print $0}: 351*9a7741deSElliott Hughesfoo=bar 352*9a7741deSElliott Hughesfoo==bar 353*9a7741deSElliott Hughesfoo+bar 354*9a7741deSElliott Hughesfoo+=bar 355*9a7741deSElliott Hughesfoo-=bar 356*9a7741deSElliott Hughesfoo*=bar 357*9a7741deSElliott Hughesfoo/=bar 358*9a7741deSElliott Hughesfoo^=bar 359*9a7741deSElliott Hughesfoo!=bar 360*9a7741deSElliott Hughesfoo<=bar 361*9a7741deSElliott Hughesfoo>=bar 362*9a7741deSElliott Hughesfoo bar 363*9a7741deSElliott Hughesfoo/bar 364*9a7741deSElliott Hughesfoo=bar=fribble 365*9a7741deSElliott Hughes=foo=bar 366*9a7741deSElliott Hughes 367*9a7741deSElliott Hughes 368*9a7741deSElliott Hughes### $0!~/^=/ {print $0}: 369*9a7741deSElliott Hughesfoo=bar 370*9a7741deSElliott Hughesfoo==bar 371*9a7741deSElliott Hughesfoo+bar 372*9a7741deSElliott Hughesfoo+=bar 373*9a7741deSElliott Hughesfoo-=bar 374*9a7741deSElliott Hughesfoo*=bar 375*9a7741deSElliott Hughesfoo/=bar 376*9a7741deSElliott Hughesfoo^=bar 377*9a7741deSElliott Hughesfoo%=bar 378*9a7741deSElliott Hughesfoo!=bar 379*9a7741deSElliott Hughesfoo<=bar 380*9a7741deSElliott Hughesfoo>=bar 381*9a7741deSElliott Hughesfoo bar 382*9a7741deSElliott Hughesfoo/bar 383*9a7741deSElliott Hughesfoo=bar=fribble 384*9a7741deSElliott Hughes 385*9a7741deSElliott Hughes 386*9a7741deSElliott Hughes### $0!~/\/=/ {print $0}: 387*9a7741deSElliott Hughesfoo=bar 388*9a7741deSElliott Hughesfoo==bar 389*9a7741deSElliott Hughesfoo+bar 390*9a7741deSElliott Hughesfoo+=bar 391*9a7741deSElliott Hughesfoo-=bar 392*9a7741deSElliott Hughesfoo*=bar 393*9a7741deSElliott Hughesfoo^=bar 394*9a7741deSElliott Hughesfoo%=bar 395*9a7741deSElliott Hughesfoo!=bar 396*9a7741deSElliott Hughesfoo<=bar 397*9a7741deSElliott Hughesfoo>=bar 398*9a7741deSElliott Hughesfoo bar 399*9a7741deSElliott Hughesfoo/bar 400*9a7741deSElliott Hughesfoo=bar=fribble 401*9a7741deSElliott Hughes=foo=bar 402*9a7741deSElliott Hughes 403*9a7741deSElliott Hughes 404*9a7741deSElliott Hughes### $0!~/!=/ {print $0}: 405*9a7741deSElliott Hughesfoo=bar 406*9a7741deSElliott Hughesfoo==bar 407*9a7741deSElliott Hughesfoo+bar 408*9a7741deSElliott Hughesfoo+=bar 409*9a7741deSElliott Hughesfoo-=bar 410*9a7741deSElliott Hughesfoo*=bar 411*9a7741deSElliott Hughesfoo/=bar 412*9a7741deSElliott Hughesfoo^=bar 413*9a7741deSElliott Hughesfoo%=bar 414*9a7741deSElliott Hughesfoo<=bar 415*9a7741deSElliott Hughesfoo>=bar 416*9a7741deSElliott Hughesfoo bar 417*9a7741deSElliott Hughesfoo/bar 418*9a7741deSElliott Hughesfoo=bar=fribble 419*9a7741deSElliott Hughes=foo=bar 420*9a7741deSElliott Hughes 421*9a7741deSElliott Hughes 422*9a7741deSElliott Hughes### $0!~/<=/ {print $0}: 423*9a7741deSElliott Hughesfoo=bar 424*9a7741deSElliott Hughesfoo==bar 425*9a7741deSElliott Hughesfoo+bar 426*9a7741deSElliott Hughesfoo+=bar 427*9a7741deSElliott Hughesfoo-=bar 428*9a7741deSElliott Hughesfoo*=bar 429*9a7741deSElliott Hughesfoo/=bar 430*9a7741deSElliott Hughesfoo^=bar 431*9a7741deSElliott Hughesfoo%=bar 432*9a7741deSElliott Hughesfoo!=bar 433*9a7741deSElliott Hughesfoo>=bar 434*9a7741deSElliott Hughesfoo bar 435*9a7741deSElliott Hughesfoo/bar 436*9a7741deSElliott Hughesfoo=bar=fribble 437*9a7741deSElliott Hughes=foo=bar 438*9a7741deSElliott Hughes 439*9a7741deSElliott Hughes 440*9a7741deSElliott Hughes### $0!~/>=/ {print $0}: 441*9a7741deSElliott Hughesfoo=bar 442*9a7741deSElliott Hughesfoo==bar 443*9a7741deSElliott Hughesfoo+bar 444*9a7741deSElliott Hughesfoo+=bar 445*9a7741deSElliott Hughesfoo-=bar 446*9a7741deSElliott Hughesfoo*=bar 447*9a7741deSElliott Hughesfoo/=bar 448*9a7741deSElliott Hughesfoo^=bar 449*9a7741deSElliott Hughesfoo%=bar 450*9a7741deSElliott Hughesfoo!=bar 451*9a7741deSElliott Hughesfoo<=bar 452*9a7741deSElliott Hughesfoo bar 453*9a7741deSElliott Hughesfoo/bar 454*9a7741deSElliott Hughesfoo=bar=fribble 455*9a7741deSElliott Hughes=foo=bar 456*9a7741deSElliott Hughes 457*9a7741deSElliott Hughes 458*9a7741deSElliott Hughes### {if(match($0,/=/))print $0}: 459*9a7741deSElliott Hughesfoo=bar 460*9a7741deSElliott Hughesfoo==bar 461*9a7741deSElliott Hughesfoo+=bar 462*9a7741deSElliott Hughesfoo-=bar 463*9a7741deSElliott Hughesfoo*=bar 464*9a7741deSElliott Hughesfoo/=bar 465*9a7741deSElliott Hughesfoo^=bar 466*9a7741deSElliott Hughesfoo%=bar 467*9a7741deSElliott Hughesfoo!=bar 468*9a7741deSElliott Hughesfoo<=bar 469*9a7741deSElliott Hughesfoo>=bar 470*9a7741deSElliott Hughesfoo=bar=fribble 471*9a7741deSElliott Hughes=foo=bar 472*9a7741deSElliott Hughes 473*9a7741deSElliott Hughes### {if(match($0,/=/))print $0}: 474*9a7741deSElliott Hughesfoo=bar 475*9a7741deSElliott Hughesfoo==bar 476*9a7741deSElliott Hughesfoo+=bar 477*9a7741deSElliott Hughesfoo-=bar 478*9a7741deSElliott Hughesfoo*=bar 479*9a7741deSElliott Hughesfoo/=bar 480*9a7741deSElliott Hughesfoo^=bar 481*9a7741deSElliott Hughesfoo%=bar 482*9a7741deSElliott Hughesfoo!=bar 483*9a7741deSElliott Hughesfoo<=bar 484*9a7741deSElliott Hughesfoo>=bar 485*9a7741deSElliott Hughesfoo=bar=fribble 486*9a7741deSElliott Hughes=foo=bar 487*9a7741deSElliott Hughes 488*9a7741deSElliott Hughes### {if(match($0,/==/))print $0}: 489*9a7741deSElliott Hughesfoo==bar 490*9a7741deSElliott Hughes 491*9a7741deSElliott Hughes### {if(match($0,/+=/))print $0}: 492*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 493*9a7741deSElliott Hughes source line number 1 494*9a7741deSElliott Hughes context is 495*9a7741deSElliott Hughes >>> {if(match($0,/+=/) <<< 496*9a7741deSElliott Hughes 497*9a7741deSElliott Hughes### {if(match($0,/*=/))print $0}: 498*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 499*9a7741deSElliott Hughes source line number 1 500*9a7741deSElliott Hughes context is 501*9a7741deSElliott Hughes >>> {if(match($0,/*=/) <<< 502*9a7741deSElliott Hughes 503*9a7741deSElliott Hughes### {if(match($0,/-=/))print $0}: 504*9a7741deSElliott Hughesfoo-=bar 505*9a7741deSElliott Hughes 506*9a7741deSElliott Hughes### {if(match($0,//=/))print $0}: 507*9a7741deSElliott Hughes../a.out: empty regular expression 508*9a7741deSElliott Hughes source line number 1 509*9a7741deSElliott Hughes context is 510*9a7741deSElliott Hughes >>> {if(match($0,//= <<< /))print $0} 511*9a7741deSElliott Hughes 512*9a7741deSElliott Hughes### {if(match($0,/%=/))print $0}: 513*9a7741deSElliott Hughesfoo%=bar 514*9a7741deSElliott Hughes 515*9a7741deSElliott Hughes### {if(match($0,/^=/))print $0}: 516*9a7741deSElliott Hughes=foo=bar 517*9a7741deSElliott Hughes 518*9a7741deSElliott Hughes### {if(match($0,/\/=/))print $0}: 519*9a7741deSElliott Hughesfoo/=bar 520*9a7741deSElliott Hughes 521*9a7741deSElliott Hughes### {if(match($0,/!=/))print $0}: 522*9a7741deSElliott Hughesfoo!=bar 523*9a7741deSElliott Hughes 524*9a7741deSElliott Hughes### {if(match($0,/<=/))print $0}: 525*9a7741deSElliott Hughesfoo<=bar 526*9a7741deSElliott Hughes 527*9a7741deSElliott Hughes### {if(match($0,/>=/))print $0}: 528*9a7741deSElliott Hughesfoo>=bar 529*9a7741deSElliott Hughes 530*9a7741deSElliott Hughes### {if(!match($0,/=/))print $0}: 531*9a7741deSElliott Hughesfoo+bar 532*9a7741deSElliott Hughesfoo bar 533*9a7741deSElliott Hughesfoo/bar 534*9a7741deSElliott Hughes 535*9a7741deSElliott Hughes 536*9a7741deSElliott Hughes### {if(!match($0,/==/))print $0}: 537*9a7741deSElliott Hughesfoo=bar 538*9a7741deSElliott Hughesfoo+bar 539*9a7741deSElliott Hughesfoo+=bar 540*9a7741deSElliott Hughesfoo-=bar 541*9a7741deSElliott Hughesfoo*=bar 542*9a7741deSElliott Hughesfoo/=bar 543*9a7741deSElliott Hughesfoo^=bar 544*9a7741deSElliott Hughesfoo%=bar 545*9a7741deSElliott Hughesfoo!=bar 546*9a7741deSElliott Hughesfoo<=bar 547*9a7741deSElliott Hughesfoo>=bar 548*9a7741deSElliott Hughesfoo bar 549*9a7741deSElliott Hughesfoo/bar 550*9a7741deSElliott Hughesfoo=bar=fribble 551*9a7741deSElliott Hughes=foo=bar 552*9a7741deSElliott Hughes 553*9a7741deSElliott Hughes 554*9a7741deSElliott Hughes### {if(!match($0,/+=/))print $0}: 555*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 556*9a7741deSElliott Hughes source line number 1 557*9a7741deSElliott Hughes context is 558*9a7741deSElliott Hughes >>> {if(!match($0,/+=/) <<< 559*9a7741deSElliott Hughes 560*9a7741deSElliott Hughes### {if(!match($0,/*=/))print $0}: 561*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 562*9a7741deSElliott Hughes source line number 1 563*9a7741deSElliott Hughes context is 564*9a7741deSElliott Hughes >>> {if(!match($0,/*=/) <<< 565*9a7741deSElliott Hughes 566*9a7741deSElliott Hughes### {if(!match($0,/-=/))print $0}: 567*9a7741deSElliott Hughesfoo=bar 568*9a7741deSElliott Hughesfoo==bar 569*9a7741deSElliott Hughesfoo+bar 570*9a7741deSElliott Hughesfoo+=bar 571*9a7741deSElliott Hughesfoo*=bar 572*9a7741deSElliott Hughesfoo/=bar 573*9a7741deSElliott Hughesfoo^=bar 574*9a7741deSElliott Hughesfoo%=bar 575*9a7741deSElliott Hughesfoo!=bar 576*9a7741deSElliott Hughesfoo<=bar 577*9a7741deSElliott Hughesfoo>=bar 578*9a7741deSElliott Hughesfoo bar 579*9a7741deSElliott Hughesfoo/bar 580*9a7741deSElliott Hughesfoo=bar=fribble 581*9a7741deSElliott Hughes=foo=bar 582*9a7741deSElliott Hughes 583*9a7741deSElliott Hughes 584*9a7741deSElliott Hughes### {if(!match($0,//=/))print $0}: 585*9a7741deSElliott Hughes../a.out: empty regular expression 586*9a7741deSElliott Hughes source line number 1 587*9a7741deSElliott Hughes context is 588*9a7741deSElliott Hughes >>> {if(!match($0,//= <<< /))print $0} 589*9a7741deSElliott Hughes 590*9a7741deSElliott Hughes### {if(!match($0,/%=/))print $0}: 591*9a7741deSElliott Hughesfoo=bar 592*9a7741deSElliott Hughesfoo==bar 593*9a7741deSElliott Hughesfoo+bar 594*9a7741deSElliott Hughesfoo+=bar 595*9a7741deSElliott Hughesfoo-=bar 596*9a7741deSElliott Hughesfoo*=bar 597*9a7741deSElliott Hughesfoo/=bar 598*9a7741deSElliott Hughesfoo^=bar 599*9a7741deSElliott Hughesfoo!=bar 600*9a7741deSElliott Hughesfoo<=bar 601*9a7741deSElliott Hughesfoo>=bar 602*9a7741deSElliott Hughesfoo bar 603*9a7741deSElliott Hughesfoo/bar 604*9a7741deSElliott Hughesfoo=bar=fribble 605*9a7741deSElliott Hughes=foo=bar 606*9a7741deSElliott Hughes 607*9a7741deSElliott Hughes 608*9a7741deSElliott Hughes### {if(!match($0,/^=/))print $0}: 609*9a7741deSElliott Hughesfoo=bar 610*9a7741deSElliott Hughesfoo==bar 611*9a7741deSElliott Hughesfoo+bar 612*9a7741deSElliott Hughesfoo+=bar 613*9a7741deSElliott Hughesfoo-=bar 614*9a7741deSElliott Hughesfoo*=bar 615*9a7741deSElliott Hughesfoo/=bar 616*9a7741deSElliott Hughesfoo^=bar 617*9a7741deSElliott Hughesfoo%=bar 618*9a7741deSElliott Hughesfoo!=bar 619*9a7741deSElliott Hughesfoo<=bar 620*9a7741deSElliott Hughesfoo>=bar 621*9a7741deSElliott Hughesfoo bar 622*9a7741deSElliott Hughesfoo/bar 623*9a7741deSElliott Hughesfoo=bar=fribble 624*9a7741deSElliott Hughes 625*9a7741deSElliott Hughes 626*9a7741deSElliott Hughes### {if(!match($0,/\/=/))print $0}: 627*9a7741deSElliott Hughesfoo=bar 628*9a7741deSElliott Hughesfoo==bar 629*9a7741deSElliott Hughesfoo+bar 630*9a7741deSElliott Hughesfoo+=bar 631*9a7741deSElliott Hughesfoo-=bar 632*9a7741deSElliott Hughesfoo*=bar 633*9a7741deSElliott Hughesfoo^=bar 634*9a7741deSElliott Hughesfoo%=bar 635*9a7741deSElliott Hughesfoo!=bar 636*9a7741deSElliott Hughesfoo<=bar 637*9a7741deSElliott Hughesfoo>=bar 638*9a7741deSElliott Hughesfoo bar 639*9a7741deSElliott Hughesfoo/bar 640*9a7741deSElliott Hughesfoo=bar=fribble 641*9a7741deSElliott Hughes=foo=bar 642*9a7741deSElliott Hughes 643*9a7741deSElliott Hughes 644*9a7741deSElliott Hughes### {if(!match($0,/!=/))print $0}: 645*9a7741deSElliott Hughesfoo=bar 646*9a7741deSElliott Hughesfoo==bar 647*9a7741deSElliott Hughesfoo+bar 648*9a7741deSElliott Hughesfoo+=bar 649*9a7741deSElliott Hughesfoo-=bar 650*9a7741deSElliott Hughesfoo*=bar 651*9a7741deSElliott Hughesfoo/=bar 652*9a7741deSElliott Hughesfoo^=bar 653*9a7741deSElliott Hughesfoo%=bar 654*9a7741deSElliott Hughesfoo<=bar 655*9a7741deSElliott Hughesfoo>=bar 656*9a7741deSElliott Hughesfoo bar 657*9a7741deSElliott Hughesfoo/bar 658*9a7741deSElliott Hughesfoo=bar=fribble 659*9a7741deSElliott Hughes=foo=bar 660*9a7741deSElliott Hughes 661*9a7741deSElliott Hughes 662*9a7741deSElliott Hughes### {if(!match($0,/<=/))print $0}: 663*9a7741deSElliott Hughesfoo=bar 664*9a7741deSElliott Hughesfoo==bar 665*9a7741deSElliott Hughesfoo+bar 666*9a7741deSElliott Hughesfoo+=bar 667*9a7741deSElliott Hughesfoo-=bar 668*9a7741deSElliott Hughesfoo*=bar 669*9a7741deSElliott Hughesfoo/=bar 670*9a7741deSElliott Hughesfoo^=bar 671*9a7741deSElliott Hughesfoo%=bar 672*9a7741deSElliott Hughesfoo!=bar 673*9a7741deSElliott Hughesfoo>=bar 674*9a7741deSElliott Hughesfoo bar 675*9a7741deSElliott Hughesfoo/bar 676*9a7741deSElliott Hughesfoo=bar=fribble 677*9a7741deSElliott Hughes=foo=bar 678*9a7741deSElliott Hughes 679*9a7741deSElliott Hughes 680*9a7741deSElliott Hughes### {if(!match($0,/>=/))print $0}: 681*9a7741deSElliott Hughesfoo=bar 682*9a7741deSElliott Hughesfoo==bar 683*9a7741deSElliott Hughesfoo+bar 684*9a7741deSElliott Hughesfoo+=bar 685*9a7741deSElliott Hughesfoo-=bar 686*9a7741deSElliott Hughesfoo*=bar 687*9a7741deSElliott Hughesfoo/=bar 688*9a7741deSElliott Hughesfoo^=bar 689*9a7741deSElliott Hughesfoo%=bar 690*9a7741deSElliott Hughesfoo!=bar 691*9a7741deSElliott Hughesfoo<=bar 692*9a7741deSElliott Hughesfoo bar 693*9a7741deSElliott Hughesfoo/bar 694*9a7741deSElliott Hughesfoo=bar=fribble 695*9a7741deSElliott Hughes=foo=bar 696*9a7741deSElliott Hughes 697*9a7741deSElliott Hughes 698*9a7741deSElliott Hughes### {if(index($0,/=/))print $0}: 699*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 700*9a7741deSElliott Hughes context is 701*9a7741deSElliott Hughes >>> {if(index($0,/=/) <<< 702*9a7741deSElliott Hughes 703*9a7741deSElliott Hughes### {if(index($0,/=/))print $0}: 704*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 705*9a7741deSElliott Hughes context is 706*9a7741deSElliott Hughes >>> {if(index($0,/=/) <<< 707*9a7741deSElliott Hughes 708*9a7741deSElliott Hughes### {if(index($0,/==/))print $0}: 709*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 710*9a7741deSElliott Hughes context is 711*9a7741deSElliott Hughes >>> {if(index($0,/==/) <<< 712*9a7741deSElliott Hughes 713*9a7741deSElliott Hughes### {if(index($0,/+=/))print $0}: 714*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 715*9a7741deSElliott Hughes context is 716*9a7741deSElliott Hughes >>> {if(index($0,/+=/) <<< 717*9a7741deSElliott Hughes 718*9a7741deSElliott Hughes### {if(index($0,/*=/))print $0}: 719*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 720*9a7741deSElliott Hughes context is 721*9a7741deSElliott Hughes >>> {if(index($0,/*=/) <<< 722*9a7741deSElliott Hughes 723*9a7741deSElliott Hughes### {if(index($0,/-=/))print $0}: 724*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 725*9a7741deSElliott Hughes context is 726*9a7741deSElliott Hughes >>> {if(index($0,/-=/) <<< 727*9a7741deSElliott Hughes 728*9a7741deSElliott Hughes### {if(index($0,//=/))print $0}: 729*9a7741deSElliott Hughes../a.out: empty regular expression 730*9a7741deSElliott Hughes source line number 1 731*9a7741deSElliott Hughes context is 732*9a7741deSElliott Hughes >>> {if(index($0,//= <<< /))print $0} 733*9a7741deSElliott Hughes 734*9a7741deSElliott Hughes### {if(index($0,/%=/))print $0}: 735*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 736*9a7741deSElliott Hughes context is 737*9a7741deSElliott Hughes >>> {if(index($0,/%=/) <<< 738*9a7741deSElliott Hughes 739*9a7741deSElliott Hughes### {if(index($0,/^=/))print $0}: 740*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 741*9a7741deSElliott Hughes context is 742*9a7741deSElliott Hughes >>> {if(index($0,/^=/) <<< 743*9a7741deSElliott Hughes 744*9a7741deSElliott Hughes### {if(index($0,/\/=/))print $0}: 745*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 746*9a7741deSElliott Hughes context is 747*9a7741deSElliott Hughes >>> {if(index($0,/\/=/) <<< 748*9a7741deSElliott Hughes 749*9a7741deSElliott Hughes### {if(index($0,/!=/))print $0}: 750*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 751*9a7741deSElliott Hughes context is 752*9a7741deSElliott Hughes >>> {if(index($0,/!=/) <<< 753*9a7741deSElliott Hughes 754*9a7741deSElliott Hughes### {if(index($0,/<=/))print $0}: 755*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 756*9a7741deSElliott Hughes context is 757*9a7741deSElliott Hughes >>> {if(index($0,/<=/) <<< 758*9a7741deSElliott Hughes 759*9a7741deSElliott Hughes### {if(index($0,/>=/))print $0}: 760*9a7741deSElliott Hughes../a.out: index() doesn't permit regular expressions at source line 1 761*9a7741deSElliott Hughes context is 762*9a7741deSElliott Hughes >>> {if(index($0,/>=/) <<< 763*9a7741deSElliott Hughes 764*9a7741deSElliott Hughes### {if(split($0,foo,/=/))print $0}: 765*9a7741deSElliott Hughesfoo=bar 766*9a7741deSElliott Hughesfoo==bar 767*9a7741deSElliott Hughesfoo+bar 768*9a7741deSElliott Hughesfoo+=bar 769*9a7741deSElliott Hughesfoo-=bar 770*9a7741deSElliott Hughesfoo*=bar 771*9a7741deSElliott Hughesfoo/=bar 772*9a7741deSElliott Hughesfoo^=bar 773*9a7741deSElliott Hughesfoo%=bar 774*9a7741deSElliott Hughesfoo!=bar 775*9a7741deSElliott Hughesfoo<=bar 776*9a7741deSElliott Hughesfoo>=bar 777*9a7741deSElliott Hughesfoo bar 778*9a7741deSElliott Hughesfoo/bar 779*9a7741deSElliott Hughesfoo=bar=fribble 780*9a7741deSElliott Hughes=foo=bar 781*9a7741deSElliott Hughes 782*9a7741deSElliott Hughes 783*9a7741deSElliott Hughes### {if(split($0,foo,/=/))print $0}: 784*9a7741deSElliott Hughesfoo=bar 785*9a7741deSElliott Hughesfoo==bar 786*9a7741deSElliott Hughesfoo+bar 787*9a7741deSElliott Hughesfoo+=bar 788*9a7741deSElliott Hughesfoo-=bar 789*9a7741deSElliott Hughesfoo*=bar 790*9a7741deSElliott Hughesfoo/=bar 791*9a7741deSElliott Hughesfoo^=bar 792*9a7741deSElliott Hughesfoo%=bar 793*9a7741deSElliott Hughesfoo!=bar 794*9a7741deSElliott Hughesfoo<=bar 795*9a7741deSElliott Hughesfoo>=bar 796*9a7741deSElliott Hughesfoo bar 797*9a7741deSElliott Hughesfoo/bar 798*9a7741deSElliott Hughesfoo=bar=fribble 799*9a7741deSElliott Hughes=foo=bar 800*9a7741deSElliott Hughes 801*9a7741deSElliott Hughes 802*9a7741deSElliott Hughes### {if(split($0,foo,/==/))print $0}: 803*9a7741deSElliott Hughesfoo=bar 804*9a7741deSElliott Hughesfoo==bar 805*9a7741deSElliott Hughesfoo+bar 806*9a7741deSElliott Hughesfoo+=bar 807*9a7741deSElliott Hughesfoo-=bar 808*9a7741deSElliott Hughesfoo*=bar 809*9a7741deSElliott Hughesfoo/=bar 810*9a7741deSElliott Hughesfoo^=bar 811*9a7741deSElliott Hughesfoo%=bar 812*9a7741deSElliott Hughesfoo!=bar 813*9a7741deSElliott Hughesfoo<=bar 814*9a7741deSElliott Hughesfoo>=bar 815*9a7741deSElliott Hughesfoo bar 816*9a7741deSElliott Hughesfoo/bar 817*9a7741deSElliott Hughesfoo=bar=fribble 818*9a7741deSElliott Hughes=foo=bar 819*9a7741deSElliott Hughes 820*9a7741deSElliott Hughes 821*9a7741deSElliott Hughes### {if(split($0,foo,/+=/))print $0}: 822*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 823*9a7741deSElliott Hughes source line number 1 824*9a7741deSElliott Hughes context is 825*9a7741deSElliott Hughes >>> {if(split($0,foo,/+=/) <<< 826*9a7741deSElliott Hughes 827*9a7741deSElliott Hughes### {if(split($0,foo,/*=/))print $0}: 828*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 829*9a7741deSElliott Hughes source line number 1 830*9a7741deSElliott Hughes context is 831*9a7741deSElliott Hughes >>> {if(split($0,foo,/*=/) <<< 832*9a7741deSElliott Hughes 833*9a7741deSElliott Hughes### {if(split($0,foo,/-=/))print $0}: 834*9a7741deSElliott Hughesfoo=bar 835*9a7741deSElliott Hughesfoo==bar 836*9a7741deSElliott Hughesfoo+bar 837*9a7741deSElliott Hughesfoo+=bar 838*9a7741deSElliott Hughesfoo-=bar 839*9a7741deSElliott Hughesfoo*=bar 840*9a7741deSElliott Hughesfoo/=bar 841*9a7741deSElliott Hughesfoo^=bar 842*9a7741deSElliott Hughesfoo%=bar 843*9a7741deSElliott Hughesfoo!=bar 844*9a7741deSElliott Hughesfoo<=bar 845*9a7741deSElliott Hughesfoo>=bar 846*9a7741deSElliott Hughesfoo bar 847*9a7741deSElliott Hughesfoo/bar 848*9a7741deSElliott Hughesfoo=bar=fribble 849*9a7741deSElliott Hughes=foo=bar 850*9a7741deSElliott Hughes 851*9a7741deSElliott Hughes 852*9a7741deSElliott Hughes### {if(split($0,foo,//=/))print $0}: 853*9a7741deSElliott Hughes../a.out: empty regular expression 854*9a7741deSElliott Hughes source line number 1 855*9a7741deSElliott Hughes context is 856*9a7741deSElliott Hughes >>> {if(split($0,foo,//= <<< /))print $0} 857*9a7741deSElliott Hughes 858*9a7741deSElliott Hughes### {if(split($0,foo,/%=/))print $0}: 859*9a7741deSElliott Hughesfoo=bar 860*9a7741deSElliott Hughesfoo==bar 861*9a7741deSElliott Hughesfoo+bar 862*9a7741deSElliott Hughesfoo+=bar 863*9a7741deSElliott Hughesfoo-=bar 864*9a7741deSElliott Hughesfoo*=bar 865*9a7741deSElliott Hughesfoo/=bar 866*9a7741deSElliott Hughesfoo^=bar 867*9a7741deSElliott Hughesfoo%=bar 868*9a7741deSElliott Hughesfoo!=bar 869*9a7741deSElliott Hughesfoo<=bar 870*9a7741deSElliott Hughesfoo>=bar 871*9a7741deSElliott Hughesfoo bar 872*9a7741deSElliott Hughesfoo/bar 873*9a7741deSElliott Hughesfoo=bar=fribble 874*9a7741deSElliott Hughes=foo=bar 875*9a7741deSElliott Hughes 876*9a7741deSElliott Hughes 877*9a7741deSElliott Hughes### {if(split($0,foo,/^=/))print $0}: 878*9a7741deSElliott Hughesfoo=bar 879*9a7741deSElliott Hughesfoo==bar 880*9a7741deSElliott Hughesfoo+bar 881*9a7741deSElliott Hughesfoo+=bar 882*9a7741deSElliott Hughesfoo-=bar 883*9a7741deSElliott Hughesfoo*=bar 884*9a7741deSElliott Hughesfoo/=bar 885*9a7741deSElliott Hughesfoo^=bar 886*9a7741deSElliott Hughesfoo%=bar 887*9a7741deSElliott Hughesfoo!=bar 888*9a7741deSElliott Hughesfoo<=bar 889*9a7741deSElliott Hughesfoo>=bar 890*9a7741deSElliott Hughesfoo bar 891*9a7741deSElliott Hughesfoo/bar 892*9a7741deSElliott Hughesfoo=bar=fribble 893*9a7741deSElliott Hughes=foo=bar 894*9a7741deSElliott Hughes 895*9a7741deSElliott Hughes 896*9a7741deSElliott Hughes### {if(split($0,foo,/\/=/))print $0}: 897*9a7741deSElliott Hughesfoo=bar 898*9a7741deSElliott Hughesfoo==bar 899*9a7741deSElliott Hughesfoo+bar 900*9a7741deSElliott Hughesfoo+=bar 901*9a7741deSElliott Hughesfoo-=bar 902*9a7741deSElliott Hughesfoo*=bar 903*9a7741deSElliott Hughesfoo/=bar 904*9a7741deSElliott Hughesfoo^=bar 905*9a7741deSElliott Hughesfoo%=bar 906*9a7741deSElliott Hughesfoo!=bar 907*9a7741deSElliott Hughesfoo<=bar 908*9a7741deSElliott Hughesfoo>=bar 909*9a7741deSElliott Hughesfoo bar 910*9a7741deSElliott Hughesfoo/bar 911*9a7741deSElliott Hughesfoo=bar=fribble 912*9a7741deSElliott Hughes=foo=bar 913*9a7741deSElliott Hughes 914*9a7741deSElliott Hughes 915*9a7741deSElliott Hughes### {if(split($0,foo,/!=/))print $0}: 916*9a7741deSElliott Hughesfoo=bar 917*9a7741deSElliott Hughesfoo==bar 918*9a7741deSElliott Hughesfoo+bar 919*9a7741deSElliott Hughesfoo+=bar 920*9a7741deSElliott Hughesfoo-=bar 921*9a7741deSElliott Hughesfoo*=bar 922*9a7741deSElliott Hughesfoo/=bar 923*9a7741deSElliott Hughesfoo^=bar 924*9a7741deSElliott Hughesfoo%=bar 925*9a7741deSElliott Hughesfoo!=bar 926*9a7741deSElliott Hughesfoo<=bar 927*9a7741deSElliott Hughesfoo>=bar 928*9a7741deSElliott Hughesfoo bar 929*9a7741deSElliott Hughesfoo/bar 930*9a7741deSElliott Hughesfoo=bar=fribble 931*9a7741deSElliott Hughes=foo=bar 932*9a7741deSElliott Hughes 933*9a7741deSElliott Hughes 934*9a7741deSElliott Hughes### {if(split($0,foo,/<=/))print $0}: 935*9a7741deSElliott Hughesfoo=bar 936*9a7741deSElliott Hughesfoo==bar 937*9a7741deSElliott Hughesfoo+bar 938*9a7741deSElliott Hughesfoo+=bar 939*9a7741deSElliott Hughesfoo-=bar 940*9a7741deSElliott Hughesfoo*=bar 941*9a7741deSElliott Hughesfoo/=bar 942*9a7741deSElliott Hughesfoo^=bar 943*9a7741deSElliott Hughesfoo%=bar 944*9a7741deSElliott Hughesfoo!=bar 945*9a7741deSElliott Hughesfoo<=bar 946*9a7741deSElliott Hughesfoo>=bar 947*9a7741deSElliott Hughesfoo bar 948*9a7741deSElliott Hughesfoo/bar 949*9a7741deSElliott Hughesfoo=bar=fribble 950*9a7741deSElliott Hughes=foo=bar 951*9a7741deSElliott Hughes 952*9a7741deSElliott Hughes 953*9a7741deSElliott Hughes### {if(split($0,foo,/>=/))print $0}: 954*9a7741deSElliott Hughesfoo=bar 955*9a7741deSElliott Hughesfoo==bar 956*9a7741deSElliott Hughesfoo+bar 957*9a7741deSElliott Hughesfoo+=bar 958*9a7741deSElliott Hughesfoo-=bar 959*9a7741deSElliott Hughesfoo*=bar 960*9a7741deSElliott Hughesfoo/=bar 961*9a7741deSElliott Hughesfoo^=bar 962*9a7741deSElliott Hughesfoo%=bar 963*9a7741deSElliott Hughesfoo!=bar 964*9a7741deSElliott Hughesfoo<=bar 965*9a7741deSElliott Hughesfoo>=bar 966*9a7741deSElliott Hughesfoo bar 967*9a7741deSElliott Hughesfoo/bar 968*9a7741deSElliott Hughesfoo=bar=fribble 969*9a7741deSElliott Hughes=foo=bar 970*9a7741deSElliott Hughes 971*9a7741deSElliott Hughes 972*9a7741deSElliott Hughes### {if(sub(/=/,"#"))print $0}: 973*9a7741deSElliott Hughesfoo#bar 974*9a7741deSElliott Hughesfoo#=bar 975*9a7741deSElliott Hughesfoo+#bar 976*9a7741deSElliott Hughesfoo-#bar 977*9a7741deSElliott Hughesfoo*#bar 978*9a7741deSElliott Hughesfoo/#bar 979*9a7741deSElliott Hughesfoo^#bar 980*9a7741deSElliott Hughesfoo%#bar 981*9a7741deSElliott Hughesfoo!#bar 982*9a7741deSElliott Hughesfoo<#bar 983*9a7741deSElliott Hughesfoo>#bar 984*9a7741deSElliott Hughesfoo#bar=fribble 985*9a7741deSElliott Hughes#foo=bar 986*9a7741deSElliott Hughes 987*9a7741deSElliott Hughes### {if(sub(/=/,"#"))print $0}: 988*9a7741deSElliott Hughesfoo#bar 989*9a7741deSElliott Hughesfoo#=bar 990*9a7741deSElliott Hughesfoo+#bar 991*9a7741deSElliott Hughesfoo-#bar 992*9a7741deSElliott Hughesfoo*#bar 993*9a7741deSElliott Hughesfoo/#bar 994*9a7741deSElliott Hughesfoo^#bar 995*9a7741deSElliott Hughesfoo%#bar 996*9a7741deSElliott Hughesfoo!#bar 997*9a7741deSElliott Hughesfoo<#bar 998*9a7741deSElliott Hughesfoo>#bar 999*9a7741deSElliott Hughesfoo#bar=fribble 1000*9a7741deSElliott Hughes#foo=bar 1001*9a7741deSElliott Hughes 1002*9a7741deSElliott Hughes### {if(sub(/==/,"#"))print $0}: 1003*9a7741deSElliott Hughesfoo#bar 1004*9a7741deSElliott Hughes 1005*9a7741deSElliott Hughes### {if(sub(/+=/,"#"))print $0}: 1006*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 1007*9a7741deSElliott Hughes source line number 1 1008*9a7741deSElliott Hughes context is 1009*9a7741deSElliott Hughes >>> {if(sub(/+=/,"#") <<< 1010*9a7741deSElliott Hughes 1011*9a7741deSElliott Hughes### {if(sub(/*=/,"#"))print $0}: 1012*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 1013*9a7741deSElliott Hughes source line number 1 1014*9a7741deSElliott Hughes context is 1015*9a7741deSElliott Hughes >>> {if(sub(/*=/,"#") <<< 1016*9a7741deSElliott Hughes 1017*9a7741deSElliott Hughes### {if(sub(/-=/,"#"))print $0}: 1018*9a7741deSElliott Hughesfoo#bar 1019*9a7741deSElliott Hughes 1020*9a7741deSElliott Hughes### {if(sub(//=/,"#"))print $0}: 1021*9a7741deSElliott Hughes../a.out: empty regular expression 1022*9a7741deSElliott Hughes source line number 1 1023*9a7741deSElliott Hughes context is 1024*9a7741deSElliott Hughes >>> {if(sub(//= <<< /,"#"))print $0} 1025*9a7741deSElliott Hughes 1026*9a7741deSElliott Hughes### {if(sub(/%=/,"#"))print $0}: 1027*9a7741deSElliott Hughesfoo#bar 1028*9a7741deSElliott Hughes 1029*9a7741deSElliott Hughes### {if(sub(/^=/,"#"))print $0}: 1030*9a7741deSElliott Hughes#foo=bar 1031*9a7741deSElliott Hughes 1032*9a7741deSElliott Hughes### {if(sub(/\/=/,"#"))print $0}: 1033*9a7741deSElliott Hughesfoo#bar 1034*9a7741deSElliott Hughes 1035*9a7741deSElliott Hughes### {if(sub(/!=/,"#"))print $0}: 1036*9a7741deSElliott Hughesfoo#bar 1037*9a7741deSElliott Hughes 1038*9a7741deSElliott Hughes### {if(sub(/<=/,"#"))print $0}: 1039*9a7741deSElliott Hughesfoo#bar 1040*9a7741deSElliott Hughes 1041*9a7741deSElliott Hughes### {if(sub(/>=/,"#"))print $0}: 1042*9a7741deSElliott Hughesfoo#bar 1043*9a7741deSElliott Hughes 1044*9a7741deSElliott Hughes### {if(gsub(/=/,"#"))print $0}: 1045*9a7741deSElliott Hughesfoo#bar 1046*9a7741deSElliott Hughesfoo##bar 1047*9a7741deSElliott Hughesfoo+#bar 1048*9a7741deSElliott Hughesfoo-#bar 1049*9a7741deSElliott Hughesfoo*#bar 1050*9a7741deSElliott Hughesfoo/#bar 1051*9a7741deSElliott Hughesfoo^#bar 1052*9a7741deSElliott Hughesfoo%#bar 1053*9a7741deSElliott Hughesfoo!#bar 1054*9a7741deSElliott Hughesfoo<#bar 1055*9a7741deSElliott Hughesfoo>#bar 1056*9a7741deSElliott Hughesfoo#bar#fribble 1057*9a7741deSElliott Hughes#foo#bar 1058*9a7741deSElliott Hughes 1059*9a7741deSElliott Hughes### {if(gsub(/=/,"#"))print $0}: 1060*9a7741deSElliott Hughesfoo#bar 1061*9a7741deSElliott Hughesfoo##bar 1062*9a7741deSElliott Hughesfoo+#bar 1063*9a7741deSElliott Hughesfoo-#bar 1064*9a7741deSElliott Hughesfoo*#bar 1065*9a7741deSElliott Hughesfoo/#bar 1066*9a7741deSElliott Hughesfoo^#bar 1067*9a7741deSElliott Hughesfoo%#bar 1068*9a7741deSElliott Hughesfoo!#bar 1069*9a7741deSElliott Hughesfoo<#bar 1070*9a7741deSElliott Hughesfoo>#bar 1071*9a7741deSElliott Hughesfoo#bar#fribble 1072*9a7741deSElliott Hughes#foo#bar 1073*9a7741deSElliott Hughes 1074*9a7741deSElliott Hughes### {if(gsub(/==/,"#"))print $0}: 1075*9a7741deSElliott Hughesfoo#bar 1076*9a7741deSElliott Hughes 1077*9a7741deSElliott Hughes### {if(gsub(/+=/,"#"))print $0}: 1078*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 1079*9a7741deSElliott Hughes source line number 1 1080*9a7741deSElliott Hughes context is 1081*9a7741deSElliott Hughes >>> {if(gsub(/+=/,"#") <<< 1082*9a7741deSElliott Hughes 1083*9a7741deSElliott Hughes### {if(gsub(/*=/,"#"))print $0}: 1084*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 1085*9a7741deSElliott Hughes source line number 1 1086*9a7741deSElliott Hughes context is 1087*9a7741deSElliott Hughes >>> {if(gsub(/*=/,"#") <<< 1088*9a7741deSElliott Hughes 1089*9a7741deSElliott Hughes### {if(gsub(/-=/,"#"))print $0}: 1090*9a7741deSElliott Hughesfoo#bar 1091*9a7741deSElliott Hughes 1092*9a7741deSElliott Hughes### {if(gsub(//=/,"#"))print $0}: 1093*9a7741deSElliott Hughes../a.out: empty regular expression 1094*9a7741deSElliott Hughes source line number 1 1095*9a7741deSElliott Hughes context is 1096*9a7741deSElliott Hughes >>> {if(gsub(//= <<< /,"#"))print $0} 1097*9a7741deSElliott Hughes 1098*9a7741deSElliott Hughes### {if(gsub(/%=/,"#"))print $0}: 1099*9a7741deSElliott Hughesfoo#bar 1100*9a7741deSElliott Hughes 1101*9a7741deSElliott Hughes### {if(gsub(/^=/,"#"))print $0}: 1102*9a7741deSElliott Hughes#foo=bar 1103*9a7741deSElliott Hughes 1104*9a7741deSElliott Hughes### {if(gsub(/\/=/,"#"))print $0}: 1105*9a7741deSElliott Hughesfoo#bar 1106*9a7741deSElliott Hughes 1107*9a7741deSElliott Hughes### {if(gsub(/!=/,"#"))print $0}: 1108*9a7741deSElliott Hughesfoo#bar 1109*9a7741deSElliott Hughes 1110*9a7741deSElliott Hughes### {if(gsub(/<=/,"#"))print $0}: 1111*9a7741deSElliott Hughesfoo#bar 1112*9a7741deSElliott Hughes 1113*9a7741deSElliott Hughes### {if(gsub(/>=/,"#"))print $0}: 1114*9a7741deSElliott Hughesfoo#bar 1115*9a7741deSElliott Hughes 1116*9a7741deSElliott Hughes### {if(sub(/=/,"#",$0))print $0}: 1117*9a7741deSElliott Hughesfoo#bar 1118*9a7741deSElliott Hughesfoo#=bar 1119*9a7741deSElliott Hughesfoo+#bar 1120*9a7741deSElliott Hughesfoo-#bar 1121*9a7741deSElliott Hughesfoo*#bar 1122*9a7741deSElliott Hughesfoo/#bar 1123*9a7741deSElliott Hughesfoo^#bar 1124*9a7741deSElliott Hughesfoo%#bar 1125*9a7741deSElliott Hughesfoo!#bar 1126*9a7741deSElliott Hughesfoo<#bar 1127*9a7741deSElliott Hughesfoo>#bar 1128*9a7741deSElliott Hughesfoo#bar=fribble 1129*9a7741deSElliott Hughes#foo=bar 1130*9a7741deSElliott Hughes 1131*9a7741deSElliott Hughes### {if(sub(/=/,"#",$0))print $0}: 1132*9a7741deSElliott Hughesfoo#bar 1133*9a7741deSElliott Hughesfoo#=bar 1134*9a7741deSElliott Hughesfoo+#bar 1135*9a7741deSElliott Hughesfoo-#bar 1136*9a7741deSElliott Hughesfoo*#bar 1137*9a7741deSElliott Hughesfoo/#bar 1138*9a7741deSElliott Hughesfoo^#bar 1139*9a7741deSElliott Hughesfoo%#bar 1140*9a7741deSElliott Hughesfoo!#bar 1141*9a7741deSElliott Hughesfoo<#bar 1142*9a7741deSElliott Hughesfoo>#bar 1143*9a7741deSElliott Hughesfoo#bar=fribble 1144*9a7741deSElliott Hughes#foo=bar 1145*9a7741deSElliott Hughes 1146*9a7741deSElliott Hughes### {if(sub(/==/,"#",$0))print $0}: 1147*9a7741deSElliott Hughesfoo#bar 1148*9a7741deSElliott Hughes 1149*9a7741deSElliott Hughes### {if(sub(/+=/,"#",$0))print $0}: 1150*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 1151*9a7741deSElliott Hughes source line number 1 1152*9a7741deSElliott Hughes context is 1153*9a7741deSElliott Hughes >>> {if(sub(/+=/,"#",$0) <<< 1154*9a7741deSElliott Hughes 1155*9a7741deSElliott Hughes### {if(sub(/*=/,"#",$0))print $0}: 1156*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 1157*9a7741deSElliott Hughes source line number 1 1158*9a7741deSElliott Hughes context is 1159*9a7741deSElliott Hughes >>> {if(sub(/*=/,"#",$0) <<< 1160*9a7741deSElliott Hughes 1161*9a7741deSElliott Hughes### {if(sub(/-=/,"#",$0))print $0}: 1162*9a7741deSElliott Hughesfoo#bar 1163*9a7741deSElliott Hughes 1164*9a7741deSElliott Hughes### {if(sub(//=/,"#",$0))print $0}: 1165*9a7741deSElliott Hughes../a.out: empty regular expression 1166*9a7741deSElliott Hughes source line number 1 1167*9a7741deSElliott Hughes context is 1168*9a7741deSElliott Hughes >>> {if(sub(//= <<< /,"#",$0))print $0} 1169*9a7741deSElliott Hughes 1170*9a7741deSElliott Hughes### {if(sub(/%=/,"#",$0))print $0}: 1171*9a7741deSElliott Hughesfoo#bar 1172*9a7741deSElliott Hughes 1173*9a7741deSElliott Hughes### {if(sub(/^=/,"#",$0))print $0}: 1174*9a7741deSElliott Hughes#foo=bar 1175*9a7741deSElliott Hughes 1176*9a7741deSElliott Hughes### {if(sub(/\/=/,"#",$0))print $0}: 1177*9a7741deSElliott Hughesfoo#bar 1178*9a7741deSElliott Hughes 1179*9a7741deSElliott Hughes### {if(sub(/!=/,"#",$0))print $0}: 1180*9a7741deSElliott Hughesfoo#bar 1181*9a7741deSElliott Hughes 1182*9a7741deSElliott Hughes### {if(sub(/<=/,"#",$0))print $0}: 1183*9a7741deSElliott Hughesfoo#bar 1184*9a7741deSElliott Hughes 1185*9a7741deSElliott Hughes### {if(sub(/>=/,"#",$0))print $0}: 1186*9a7741deSElliott Hughesfoo#bar 1187*9a7741deSElliott Hughes 1188*9a7741deSElliott Hughes### {if(sub(/=/,"#",$0))print $0}: 1189*9a7741deSElliott Hughesfoo#bar 1190*9a7741deSElliott Hughesfoo#=bar 1191*9a7741deSElliott Hughesfoo+#bar 1192*9a7741deSElliott Hughesfoo-#bar 1193*9a7741deSElliott Hughesfoo*#bar 1194*9a7741deSElliott Hughesfoo/#bar 1195*9a7741deSElliott Hughesfoo^#bar 1196*9a7741deSElliott Hughesfoo%#bar 1197*9a7741deSElliott Hughesfoo!#bar 1198*9a7741deSElliott Hughesfoo<#bar 1199*9a7741deSElliott Hughesfoo>#bar 1200*9a7741deSElliott Hughesfoo#bar=fribble 1201*9a7741deSElliott Hughes#foo=bar 1202*9a7741deSElliott Hughes 1203*9a7741deSElliott Hughes### {if(gsub(/=/,"#",$0))print $0}: 1204*9a7741deSElliott Hughesfoo#bar 1205*9a7741deSElliott Hughesfoo##bar 1206*9a7741deSElliott Hughesfoo+#bar 1207*9a7741deSElliott Hughesfoo-#bar 1208*9a7741deSElliott Hughesfoo*#bar 1209*9a7741deSElliott Hughesfoo/#bar 1210*9a7741deSElliott Hughesfoo^#bar 1211*9a7741deSElliott Hughesfoo%#bar 1212*9a7741deSElliott Hughesfoo!#bar 1213*9a7741deSElliott Hughesfoo<#bar 1214*9a7741deSElliott Hughesfoo>#bar 1215*9a7741deSElliott Hughesfoo#bar#fribble 1216*9a7741deSElliott Hughes#foo#bar 1217*9a7741deSElliott Hughes 1218*9a7741deSElliott Hughes### {if(gsub(/==/,"#",$0))print $0}: 1219*9a7741deSElliott Hughesfoo#bar 1220*9a7741deSElliott Hughes 1221*9a7741deSElliott Hughes### {if(gsub(/+=/,"#",$0))print $0}: 1222*9a7741deSElliott Hughes../a.out: illegal primary in regular expression += at = 1223*9a7741deSElliott Hughes source line number 1 1224*9a7741deSElliott Hughes context is 1225*9a7741deSElliott Hughes >>> {if(gsub(/+=/,"#",$0) <<< 1226*9a7741deSElliott Hughes 1227*9a7741deSElliott Hughes### {if(gsub(/*=/,"#",$0))print $0}: 1228*9a7741deSElliott Hughes../a.out: illegal primary in regular expression *= at = 1229*9a7741deSElliott Hughes source line number 1 1230*9a7741deSElliott Hughes context is 1231*9a7741deSElliott Hughes >>> {if(gsub(/*=/,"#",$0) <<< 1232*9a7741deSElliott Hughes 1233*9a7741deSElliott Hughes### {if(gsub(/-=/,"#",$0))print $0}: 1234*9a7741deSElliott Hughesfoo#bar 1235*9a7741deSElliott Hughes 1236*9a7741deSElliott Hughes### {if(gsub(//=/,"#",$0))print $0}: 1237*9a7741deSElliott Hughes../a.out: empty regular expression 1238*9a7741deSElliott Hughes source line number 1 1239*9a7741deSElliott Hughes context is 1240*9a7741deSElliott Hughes >>> {if(gsub(//= <<< /,"#",$0))print $0} 1241*9a7741deSElliott Hughes 1242*9a7741deSElliott Hughes### {if(gsub(/%=/,"#",$0))print $0}: 1243*9a7741deSElliott Hughesfoo#bar 1244*9a7741deSElliott Hughes 1245*9a7741deSElliott Hughes### {if(gsub(/^=/,"#",$0))print $0}: 1246*9a7741deSElliott Hughes#foo=bar 1247*9a7741deSElliott Hughes 1248*9a7741deSElliott Hughes### {if(gsub(/\/=/,"#",$0))print $0}: 1249*9a7741deSElliott Hughesfoo#bar 1250*9a7741deSElliott Hughes 1251*9a7741deSElliott Hughes### {if(gsub(/!=/,"#",$0))print $0}: 1252*9a7741deSElliott Hughesfoo#bar 1253*9a7741deSElliott Hughes 1254*9a7741deSElliott Hughes### {if(gsub(/<=/,"#",$0))print $0}: 1255*9a7741deSElliott Hughesfoo#bar 1256*9a7741deSElliott Hughes 1257*9a7741deSElliott Hughes### {if(gsub(/>=/,"#",$0))print $0}: 1258*9a7741deSElliott Hughesfoo#bar 1259