I would like to use awk to lookup a value from a text file. The text file has a very simple format:

text \t value
text \t value
text \t value
...

I want to pass the actual text for which the value should be looked up via a shell variable, e.g., $1.

Any ideas how I can do this with awk?

your help is great appreciated.

All the best, Alberto

link|improve this question
Note that if tab is explicitly the field separator, and if any of your fields can contain spaces, you'll have to specify tab as the field separator: awk -F'\t' ... – glenn jackman Dec 8 '10 at 16:50
feedback

4 Answers

up vote 1 down vote accepted

Something like this would do the job:

#!/bin/sh
awk -vLOOKUPVAL=$1 '$1 == LOOKUPVAL { print $2 }' < inputFile

Essentially you set the lookup value passed into the shell script in $1 to an awk variable, then you can access that within awk itself. To clarify, the first $1 is the shell script argument passed in on the command line, the second $1 (and subsequent $2) are fields 1 and 2 of the input file.

link|improve this answer
thanks that works - except for minimal changes to the syntax: awk '$1 == LOOKUPVAL { print $2 }' LOOKUPVAL=$1 inputFile – user534805 Dec 8 '10 at 10:42
I'd quote $1 in the shell script: awk -v "LOOKUPVAL=$1" ... – glenn jackman Dec 8 '10 at 16:50
feedback
TEXT=`grep value file | cut -f1`
link|improve this answer
feedback

I think grep might actually be a better fit:

$ echo "key value
ambiguous correct
wrong ambiguous" | grep '^ambiguous ' | awk ' { print $2 } '

The ^ on the pattern is to match to the start of the line and ensure that you don't match a line where the value, rather than the key, was the desired text.

link|improve this answer
I disagree. awk is perfectly capable of doing this all by itself – glenn jackman Dec 8 '10 at 16:51
feedback

You can do this in a pure AWK script without a shell wrapper:

#!/usr/bin/awk -f
BEGIN { key = ARGV[1]; ARGV[1]="" }
$1 == key { print $2 }

Call it like this:

./lookup.awk keyval lookupfile

Example:

$ cat lookupfile
aaa     111
bbb     222
ccc     333
ddd     444
zzz     999
mmm     888
$ ./lookup.awk ddd lookupfile
444
$ ./lookup.awk zzz lookupfile
999

This could even be extended to select the desired field using an argument.

#!/usr/bin/awk -f
BEGIN { key = ARGV[1]; field = ARGV[2]; ARGV[1]=ARGV[2]="" }
$1 == key { print $field }

Example:

$ cat lookupfile2
aaa     111     abc
bbb     222     def
ccc     333     ghi
ddd     444     jkl
zzz     999     mno
mmm     888     pqr
$ ./lookupf.awk mmm 1 lookupfile2
mmm
$ ./lookupf.awk mmm 2 lookupfile2
888
$ ./lookupf.awk mmm 3 lookupfile2
pqr
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.