标签: bash awk
如何搜索文件的第一列并使用变量作为搜索条件从第二列获取相应的值?
我需要这样的东西......
for pdf in $reports do id=` less /path/file | awk '$1 == pdf {print $2}'` do other stuff done