gpt4 book ai didi

linux - 在 unix 中搜索模式为 [A-Z] 的文件

转载 作者:太空宇宙 更新时间:2023-11-04 09:00:25 26 4
gpt4 key购买 nike

我想搜索与模式 [A-Z] 匹配的文件。

我在目录中创建了一些文件,如 test.txt、MANUAL.txt 等。现在,我想根据搜索模式 [A-Z] 过滤文件

示例:假设我有一个包含以下内容的文件:

A SCRAPER sITe is a WEBsite that features content123 stolen from other sites and presented as original. 

我希望我的搜索结果与模式 [A-Z] 匹配。

编辑:只有“SCRAPER”应该出现在搜索结果中

最佳答案

如果您要在文件中查找大写的单词:

grep -o '\<[[:upper:]]\+\>' file

如果您要查找此目录中的哪些文件包含大写单词:

grep -lo '\<[[:upper:]]\+\>' *

关于linux - 在 unix 中搜索模式为 [A-Z] 的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22531333/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com