Zasadniczo
TA LINIA BYŁA USUNIĘTA
i
(TA LINIA BYŁA RÓWNIEŻ USUNIĘTA)
ale
Rzeczywiście, TA LINIA NIE BYŁA
Całkiem kilka sposobów. Myśl negatywnie:
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