Just what title says. I am surprised by insufficiency of results in Google search for this question! What I want to is the equivalent of Python dictionaries but in bash (and hence, should work across OSX, Ubuntu and other major Linux distributions).
|
Bash 4Bash 4 natively supports this feature. Make sure your script's hashbang is You declare an associative array by doing:
You can fill it up with elements using the normal array assignment operator:
Or merge them:
Then use them just like normal arrays.
Bash 3Before bash 4, you don't have associative arrays. Do not use First and foremost: Just consider upgrading to bash 4. Seriously. The future is now, stop living in the past and suffering from it by forcing stupid broken and ugly hacks on your code and every poor soul stuck maintaining it. If you have some silly excuse why you "can't upgrade", Let's prepare the answer by introducing the concepts: First, indirection (seriously; never use this unless you're mentally ill or have some other bad excuse for writing hacks).
Secondly,
Bring them together:
Let's use it:
Note: SummaryUpgrade to bash 4 and use |
|||||||||||||||||||
|
|
There's parameter substitution, though it may be un-PC as well ...like indirection.
The BASH 4 way is better of course, but if you need a hack ...only a hack will do. You could search the array/hash with similar techniques. |
|||||||||||||||
|
|
You can further modify the hput()/hget() interface so that you have named hashes as follows:
and then
This lets you define other maps that don't conflict (e.g., 'rcapitols' which does country lookup by capitol city). But, either way, I think you'll find that this is all pretty terrible, performance-wise. If you really want fast hash lookup, there's a terrible, terrible hack that actually works really well. It is this: write your key/values out to a temporary file, one-per line, then use 'grep "^$key"' to get them out, using pipes with cut or awk or sed or whatever to retrieve the values. Like I said, it sounds terrible, and it sounds like it ought to be slow and do all sorts of unnecessary IO, but in practice it is very fast (disk cache is awesome, ain't it?), even for very large hash tables. You have to enforce key uniqueness yourself, etc. Even if you only have a few hundred entries, the output file/grep combo is going to be quite a bit faster - in my experience several times faster. It also eats less memory. Here's one way to do it:
|
|||||
|
|
This is what I was looking for here:
This did not work for me with bash 4.1.5:
|
|||
|
|
|
|||||||||
|
|
I really liked Al P's answer but wanted uniqueness enforced cheaply so I took it one step further - use a directory. There are some obvious limitations (directory file limits, invalid file names) but it should work for most cases.
It also performs a tad bit better in my tests.
Just thought I'd pitch in. Cheers! Edit: Adding hdestroy() |
||||
|
|
|
Two things, you can use memory instead of /tmp in any kernel 2.6 by using /dev/shm (Redhat) other distros may vary. Also hget can be reimplemented using read as follows:
In addition by assuming that all keys are unique, the return short circuits the read loop and prevents having to read through all entries. If your implementation can have duplicate keys, then simply leave out the return. This saves the expense of reading and forking both grep and awk. Using /dev/shm for both implementations yielded the following using time hget on a 3 entry hash searching for the last entry : Grep/Awk:
Read/echo:
on multiple invocations I never saw less then a 50% improvement.
This can all be attributed to fork over head, due to the use of |
||||
|
|
|
Prior to bash 4 there is no good way to use associative arrays in bash. Your best bet is to use an interpreted language that actually has support for such things, like awk. On the other hand, bash 4 does support them. As for less good ways in bash 3, here is a reference than might help: http://mywiki.wooledge.org/BashFAQ/006 |
|||
|
|
|
To get a little more performance remember that grep has a stop function, to stop when it finds the nth match in this case n would be 1. grep --max_count=1 ... or grep -m 1 ... |
|||
|
|
|
A coworker just mentioned this thread. I've independently implemented hash tables within bash, and it's not dependent on version 4. From a blog post of mine in March 2010 (before some of the answers here...) entitled Hash tables in bash:
Sure, it makes an external call for cksum and is therefore somewhat slowed, but the implementation is very clean and usable. It's not bidirectional, and the built-in way is a lot better, but neither should really be used anyway. Bash is for quick one-offs, and such things should quite rarely involve complexity that might require hashes, except perhaps in your .bashrc and friends. |
|||
|
|