Sort by

recency

|

77 Discussions

|

  • + 0 comments

    grep -iwe "the" -e "that" -e "then" -e "those"

  • + 0 comments

    egrep -i -w "the|that|then|those"

  • + 0 comments
    grep -w -i -E "the|that|then|those"
    
  • + 0 comments
    grep -E -i -w "the|that|then|those"
    
  • + 0 comments

    egrep -iw 'the|that|then|those'