egrep -i -f白名单没有运行

时间:2015-11-11 22:12:54

标签: grep

我正在尝试将文件用作针对其他文件的白名单。白名单文件的电子邮件地址带有\ n分隔符。该文件是csv文件。

我试过了:

egrep -i -f whitelist file | tee newfile 

我也尝试过:

egrep -f whitelist file | tee newfile

我也尝试过:

cat file | egrep -i -e -f whitelist | tee newfile

当我运行这些时,tee显示没有输出并且该过程完成。

wc -l *

这表明没有任何转移到新文件。

请帮帮我!谢谢!

@Etan Reisner:

白名单文件的一个示例是:

email@email.com
email1@address.com
email2@address.com

等...

输入文件的示例是:

name,address,email@email.com,...
name,address,email@email.com,...
name,address,email@email.com,...

0 个答案:

没有答案