for...in

awk 'BEGIN {
    assoc["key1"] = "val1"
    assoc["key2"] = "val2"
    for (key in assoc)
        print assoc[key];
}'

#Arguments

awk 'BEGIN {
 for (argnum in ARGV)
 print ARGV[argnum];
}' a b c
Comments