如何使用另一个文件作为输入来搜索文件目录并将输出发送到另一个文件?
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
grep -rlFf 名称_文件 邮件历史记录 > 火柴
grep -rlFf names_file MailHistory > matches
或者,如果您不想递归检查目录:
or, if you don't want to recursively check the directory:
猫名单| 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