fork download
  1. #!/bin/bash
  2. s='Some good feed
  3. Soot and weed'
  4. grep -oE '[[:alpha:]]*([aeiou])\1[[:alpha:]]*' <<< "$s"
Success #stdin #stdout 0.01s 5432KB
stdin
Standard input is empty
stdout
good
feed
Soot
weed