检查列表中是否存在某个字段,该列表也是数据库的一部分?

时间:2013-09-26 21:29:07

标签: database shell unix awk

我正在努力确保'发货'属于'部分'而'部分'属于'Cpu'

cpu.txt包含:

Cpu part

list.txt包含:

part brand price shipping shipped

我已经确定'part'属于cpu.txt,使用:

awk '{ print $1 }' cpu.txt >> temp.txt

然后使用grep比较cpu.txt中的输入与$ 1列。

现在我的问题是确保其他参数同时属于'list.txt'和'cpu.txt'

./check.sh Cpu shipped 

对不起,如果有点不清楚,我可以回答问题。

1 个答案:

答案 0 :(得分:2)

awk 'NR==FNR{a[$1]=$0;next}a[$2]~/shipped/{print $0}' list.txt cpu.txt