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 — ギコサウルス ソース