sed:find:grep_for_aaa_or_bbb_or_ccc
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
sed/find/grep_for_aaa_or_bbb_or_ccc.txt · Last modified: 2020/08/16 12:52 by 192.168.1.1