====== SED - Find - Grep for AAA or BBB or CCC ====== Emulates "egrep". sed -e '/AAA/b' -e '/BBB/b' -e '/CCC/b' -e d # most seds gsed '/AAA\|BBB\|CCC/!d' # GNU sed only