9 Apr
2013
9 Apr
'13
10:57 p.m.
Yep, thanks again. I fixed the regexp, but I also hadn't realized that "|" is not a special character within brackets, so I fixed it to the not-really-correct but working:
HOST=%^db[1|2|3|6][1|2|3].bo3.*
which works but has extraneous characters, it should be:
HOST=%^db[1236][123].bo3.*
or to get exactly what I had before:
HOST=%^db(11|12|13|21|22|23|31|32|33|61|62).bo3.*
Although for our particular purposes I could also just do:
HOST=%^db[1-6][0-9].bo3.*
since that matches all the present and future dbN.bo3 hosts except db0-db9 , which are special
educational day!
HOST=%^db[11|12|13|21|22|23|31|32|33|61|62].bo3.*