De algumas 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
Então, basicamente
ESTA LINHA SERIA APAGADA
e
(ESTA LINHA TAMBÉM SERIA APAGADA)
mas
De fato, ESTA LINHA NÃO
Tente isto:
sed '/[a-z]/!d' file