我正在努力确保'发货'属于'部分'而'部分'属于'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
对不起,如果有点不清楚,我可以回答问题。
答案 0 :(得分:2)
awk 'NR==FNR{a[$1]=$0;next}a[$2]~/shipped/{print $0}' list.txt cpu.txt