Users Guide

Table Of Contents
1109 | External Services Interface Dell Networking W-Series ArubaOS 6.4.x| User Guide
Operator Description Sample Result
\> Match at the end of a word s/\>/blah/ Inserts “blah” at the end of
the word
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”, RFC3164, 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