|
|
|
|
|
by nytgop77
1809 days ago
|
|
Yup. Regex is not a silver bullet for "match stuff", and it is wrong(ish) tool for following jobs: - context sensitive matching - matching with multi-char-exclusions (regex is happy the most, when it's used to match "regular language" things) |
|
So to search for words without any vowels just 'grep [^aeiou]'?