sed one-liner para eliminar cualquier línea que no contenga letras minúsculas

13

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

ixtmixilix
fuente

Respuestas:

17

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
geekosaur
fuente
8

Prueba esto:

sed '/[a-z]/!d' file
SiegeX
fuente