Users Guide

Table Of Contents
1063| External Services Interface Dell Networking W-Series ArubaOS 6.5.x| User Guide
Operator Description Sample Result
egrep \>blah”
sample.txt
Matches soupblah, etc.
\b Match at the beginning or
end of a word
egrep \bblah
sample.txt
Matches blahcake and
countblah
\B Match in the middle of a word egrep \Bblah”
sample.txt
Matches sublahper, etc.
References
This implementation is based, in part, on the following resources:
l Lonvick, C., The BSD syslog Protocol, RFC3164, August 2001
l Regular expression (regex) reference: en.wikipedia.org/wiki/Regular_expression
l Regex syntax summary:greenend.org.uk/rjk/2002/06/regexp.html
l Basic regular expression (BRE) syntax: builder.com.com/5100-6372-1050915.html