7Print all lines containing an uppercase letter followed by four lowercase letters a comma a and one uppercase letterSorry as an AI language model I do not have access to the specific text you are re
命令可以实现这个功能。具体命令如下:
grep '[A-Z][a-z]{4},[[:space:]]*[A-Z]' filename
其中,[A-Z]表示匹配任意一个大写字母,[a-z]{4}表示匹配四个小写字母,[[:space:]]*表示匹配任意数量的空格。filename表示要搜索的文件名。这个命令会输出所有包含符合要求的行。
原文地址: https://www.cveoy.top/t/topic/cdla 著作权归作者所有。请勿转载和采集!