在一个文本文件中,我有150个单词.我有另一个文本文件,大约有100,000行.
我想过使用grep,但我找不到如何使用它来阅读原始文本中的每个单词.
有没有办法用awk做到这一点?或另一种解决方案
我试过这个shell脚本,但它几乎匹配每一行:
#!/usr/bin/env sh cat words.txt | while read line; do if grep -F "$FILENAME" text.txt then echo "Se encontró $line" fi done
我发现的另一种方式是:
fgrep -w -o -f "words.txt" "text.txt"
解决方法
你可以使用fgrep -f:
fgrep -f "first-file" "second-file"
或者匹配完整的单词:
fgrep -w -f "first-file" "second-file"
更新:根据评论:
awk 'FNR==NR{a[$1];next} ($1 in a){delete a[$1]; print $1}' file1 file2