gpt4 book ai didi

linux - 在当前目录下搜索没有特定字符串的文件

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:54:21 25 4
gpt4 key购买 nike

我在一个文件夹中有数百个*.txt文件,其中一些由于不小心缺少'作者'标签,现在我想找出它们而不用手动逐一检查。此外,我认为最好只搜索 *.txt 文件(即跳过同一文件夹中的其他类型的文件)。

期望输出:

001.txt
004.txt
008.txt
009.txt

我知道它可能与“grep”或“find”命令有关,我通过了 --help 但仍然没有太多想法。我能弄清楚的只是过滤掉文件夹中的所有 *.txt 文件

ls -ltr | grep txt
001.txt
002.txt
003.txt
004.txt
005.txt
006.txt
007.txt
008.txt
009.txt
010.txt

最佳答案

试试 grepfind 的组合

find -iname "*.txt" -exec grep 'author' {} \;

find -iname "*.txt" -exec grep -l 'author' {} \;

-l, --files-with-matches
Suppress normal output; instead print the name of each input file from which output would normally have been printed. The scanning
will stop on the first match. (-l is specified by POSIX.)

关于linux - 在当前目录下搜索没有特定字符串的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27665377/

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