1 #!/bin/bash
2 KEY_FILE="keys"
3 TABLE_FILE="table" #pipe delimited data
4
5 i=0;
6 while read key #print out rows in table file with key in keys file
7 do
8 let i=i+1
9 # key is first column in table
10 # print status to stderr
11 (echo "$KEY_FILE : line $i" >&2)
12 awk -F '|' "\$1 == $key {print \$0}" $TABLE_FILE
13 done < $KEY_FILE
14
From line 12, will awk match the first column against the key if there is a white space discrepancy?
joinutility if your files are sorted (they can be sorted on the fly) and it doesn't matter if the output may be in a different order than the input. – Dennis Williamson Mar 11 '11 at 3:17