如何使用另一个文件作为输入来搜索文件目录并将输出发送到另一个文件?

发布于 2024-07-15 08:03:43 字数 434 浏览 7 评论 0原文

我正在 Unix 系统上工作。 我有一个名为 MailHistory 的文件目录。 目录中的每个文件都包含前一天的所有电子邮件。
这些文件是在午夜创建的,并以时间戳命名。 因此,典型的文件名是 20090323000100。

我有一个包含名称列表的文件。 使用此文件作为输入,我需要搜索 MailHistory 目录。 搜索结果 只需返回包含正在搜索的名称的文件的文件名。

这是文件中的名称示例: 加迪斯,舒瑞 V. 吉尔·蕾妮·赫维尔 特里西娅·贾米·卡彭加 莫顿,维奥拉 尼尔森,塔米·K 大卫·林恩·欧柏林 朋友们,威廉·布莱恩特 PEARSON-BUNCH, ELESE

电子邮件的姓名格式相同(姓氏、名字、中间名)和大小写(大写)。 我想将输出发送到文件。

提前致谢, 科里

I am working on a Unix system. I have a directory of files called MailHistory. Each file in the directory contains all of the emails for the previous day.
The files are created at midnight and named with the timedatestamp. So, a typical filename is 20090323000100.

I have a file that has a list of names. Using this file as input, I need to search the MailHistory directory. The results of the search
need only return the filename of the file that contains the name being searched.

This is an example of the names in the file:
GADDIS, SHUREE V.
HERWEYER, JILL RENEE
KAPENGA, TRICIA JAMI
MOTON, VIOLA
NELSON, TAMMY K
OBERLIN, DAVID LYNN
PALS, WILLIAM BRYANT
PEARSON-BUNCH, ELESE

The emails will have names in the same format (LASTNAME, FIRSTNAME MIDDLENAME) and case (UPPER). I want to send the output to a file.

Thanks in Advance,
Corey

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

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

发布评论

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

评论(3

熟人话多 2024-07-22 08:03:43

grep -rlFf 名称_文件 邮件历史记录 > 火柴

grep -rlFf names_file MailHistory > matches

冷月断魂刀 2024-07-22 08:03:43
grep -l SEARCH_TERM -r MailHistory

或者,如果您不想递归检查目录:

cd MailHistory; grep -l SEARCH_TERM *; cd -
grep -l SEARCH_TERM -r MailHistory

or, if you don't want to recursively check the directory:

cd MailHistory; grep -l SEARCH_TERM *; cd -
梦魇绽荼蘼 2024-07-22 08:03:43

猫名单| xargs -I{} grep -l "SHUREE V\.HERWEYER" {} > 匹配

记住您需要在搜索字符串中转义 () 点

cat list | xargs -I{} grep -l "SHUREE V\. HERWEYER" {} > matches

Remember you'll need to escape () dots in the search string

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文