Hey guys, I was playing around with grep earlier and was doing some bracket counting and came across this odd little quirk.
[squib@amish eggdrop]$ grep -c '{' eggdrop.conf
15
[squib@amish eggdrop]$ grep -c '}' eggdrop.conf
16
Now I have gone through and manually counted the brackets in eggdrop.conf, they match up. The eggdrop doesn't send out any errors and in fact runs smoothly.
So I'm just wondering, is this a bug with grep or is there something I'm completely missing?