17 몇 가지 방법이 있습니다. 부정적인 생각 : 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 — 괴짜 소스