#!/bin/bash\ #首先过滤出匹配一次数字的,如果有多个字母的情况,grep反选匹配2次及以上的情况 cat nowcoder.txt | grep -E -i "[[:digit:]]{1}" | grep -i -v -E "[[:digit:]]{2,}"