Possible Duplicate:
How to define hash tables in bash?
I wish to create a hash map in a Linux shell script which associates string keys with string values. Is there a simple way I can do this?
Possible Duplicate:
How to define hash tables in bash?
I wish to create a hash map in a Linux shell script which associates string keys with string values. Is there a simple way I can do this?
The environment itself is a hash map that associates string keys with string values.
myvar1=myvalue1
myvar2=myvalue2
etc.
Or do you need something more?