给定关键字列表按名称查找文件列表并查找未找到的关键字列表

发布于 2024-12-03 14:35:03 字数 244 浏览 1 评论 0原文

问题:我在文件 call keywords.txt 中有一个这样的关键字列表

141367
141374
141376
141368

,我需要使用它来搜索一个大型复杂文件夹,以查找名称中包含任何关键字的任何文件。我需要一份包含两个不同列表的报告。

  1. 找到名称中包含任何关键字的文件列表。
  2. 从未在任何文件名中找到的关键字列表。

帮助?

The problem: I have a list of keywords like this in file call keywords.txt

141367
141374
141376
141368

and I need to use it to search a large complex folder for any file with any of the keywords in its name. I need a report of two different lists.

  1. The list of files found that contains any of the keywords in its name.
  2. The list of keywords that were never found in any file name.

Help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

明月夜 2024-12-10 14:35:03

未经测试的

files=$(find folder_name -type f | fgrep -f keywords.txt)

not_found=$(comm -23 <(sort keywords.txt) <(fgrep -f keywords.txt <<< "$files" | sort)

untested

files=$(find folder_name -type f | fgrep -f keywords.txt)

not_found=$(comm -23 <(sort keywords.txt) <(fgrep -f keywords.txt <<< "$files" | sort)
§对你不离不弃 2024-12-10 14:35:03

这是 bash 中的内容(ver4+)

#!/bin/bash

filecontent=($(<file))
shopt -s globstar
for file in **
do
    found="0"
    for word in ${filecontent[@]}
    do
       case "${file##*/}" in
         *"$word"* )
            echo "file found: $file with keyword: $w"
            found="1"
            ;;
       esac
    done
    case "$found" in
        "0") echo "No keyword file: $file";;
    esac
done

Here's something in bash (ver4+)

#!/bin/bash

filecontent=($(<file))
shopt -s globstar
for file in **
do
    found="0"
    for word in ${filecontent[@]}
    do
       case "${file##*/}" in
         *"$word"* )
            echo "file found: $file with keyword: $w"
            found="1"
            ;;
       esac
    done
    case "$found" in
        "0") echo "No keyword file: $file";;
    esac
done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文