我有一个文件1:
green
yellow
apple
mango
和一个文件2:
red apple
blue banana
yellow mango
purple cabbage
我需要从 file2 中找到两个单词都属于 file1 中的列表的元素。所以它应该显示:
黄芒果
我试过了:
awk < file2 '{if [grep -q $1 file1] && [grep -q $2 file1]; then print $0; fi}'
我收到语法错误。