#!/bin/bash
s="My boomerang
Text here
Koala there"
sed -n '/[aeiou]\{2,\}/p' <<< "$s"
grep '[aeiou]\{2,\}'  <<< "$s"