Regular Expressions
Regex for checkconfig
chkconfig | grep -w "^ipmi\s*on$"
\s = whitespace
Non capturing group
regex:(blub)(blubber)
text:blubblubber
result: blubblubber
text:blablubber
result:
regex: (?:blubb)(blubber)
chkconfig | grep -w "^ipmi\s*on$"
\s = whitespace
regex:(blub)(blubber)
text:blubblubber
result: blubblubber
text:blablubber
result:
regex: (?:blubb)(blubber)