Pada dasarnya
GARIS INI AKAN DIHAPUS
dan
(GARIS INI AKAN JUGA DIHAPUS)
tapi
Memang, GARIS INI TIDAK AKAN
Cukup banyak cara. Berpikir negatif:
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