题解 | #打印字母数小于8的单词#
打印字母数小于8的单词
http://www.nowcoder.com/practice/bd5b5d4b93a04226a81afbabf0be797d
gawk 'BEGIN{RS=" ";FS=""}NF<8{print $0}' nowcoder.txt
打印字母数小于8的单词
http://www.nowcoder.com/practice/bd5b5d4b93a04226a81afbabf0be797d
gawk 'BEGIN{RS=" ";FS=""}NF<8{print $0}' nowcoder.txt
相关推荐