Living a Simple Life is a Happy Life

有饭吃,自由自在,就非常开心

How to Grep Obtain Patterns From File

| Comments

有一个100G的大文本文件 emailinfo.dict,包含邮箱及用户昵称; 格式为

1
2
[email protected],你是我的海
...

有一个用户名文件user.txt,格式为:

1
2
3
aaa
xxxx
....

我们希望找出emailinfo.dict中,以user.txt中用户名开头的所有内容。

首先将user.txt内容改为:

1
2
3
^aaa
^xxxx
....

然后执行:

grep -G -f user.txt emailinfo.dict

这个-G参数又花了我半个小时去读文档,我都不知道第几次做这种事情了。人年纪大了果然只能靠笔记。

Comments