Así que básicamente
ESTA LÍNEA SERÍA BORRADA
y
(ESTA LÍNEA TAMBIÉN SERÍA BORRADA)
pero
De hecho, ESTA LÍNEA NO SERÍA
Muy pocas maneras. Piensa 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
Prueba esto:
sed '/[a-z]/!d' file