Então, basicamente
ESTA LINHA SERIA EXCLUÍDA
e
(ESTA LINHA TAMBÉM DECLARARIA)
mas
De fato, ESTA LINHA NÃO
De várias maneiras. Pense negativamente:
sed '/[a-z]/!d' # !x runs x if the pattern doesn't match
grep -v '[a-z]' # -v means print if the regexp doesn't match
awk '!/[a-z]/' # !expr negates expr