We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Linux Shell
- Grep Sed Awk
- 'Grep' - A
- Discussions
'Grep' - A
'Grep' - A
Sort by
recency
|
77 Discussions
|
Please Login in order to post a comment
grep -iwe "the" -e "that" -e "then" -e "those"
egrep -i -w "the|that|then|those"
egrep -iw 'the|that|then|those'