HASHSTASH(3) | 3 (libbash hashstash library manual) | HASHSTASH(3) |
hashstash
—
libbash library that implements hash data
structure
hashSet
hashGet
hashKeys
hashRemove
hashDelete
hashstash
is a collection of functions
that implement basic hash data-structure in bash scripting language.
The function list:
Detailed interface description follows.
hashSet
⟨Value⟩
⟨Key⟩
⟨Hashname⟩ [SubHashName [...]]Adds a value to the hash.
Parameters:
Value will be the value of the key Key in the hash HashName. For example if you have (or want to define) hash C, which is subhash of hash B, which is subhash of hash A, and C has a key named ckey1 with value cval1, then you should use:
hashGet
⟨Key⟩
⟨HashName⟩ [SubHashName [...]]Returns the value of Key in HashName to the $retval variable.
Parameters:
Return Value:
hashKeys
⟨HashName⟩ [SubHashName [...]]Returns a list of keys of the hash HashName in the variable $retval.
Parameters:
Return Value:
hashRemove
⟨Key⟩
⟨HashName⟩ [SubHashName [...]]Removes the key Key from the hash HashName.
This function should also be used to remove a sub-hash from its "father hash". In that case, the key will be the name of the sub-hash.
hashDelete
⟨HashName⟩ [SubHashName [...]]Deletes the hash HashName [SubHashName [...]].
Parameters:
If this function is used on a sub-hash, a key with the name of the sub-hash will remain in its "father hash" and will hold a NULL value.
A hash name can only contain characters that are valid as part of bash variable names (i.e. a-zA-Z0-9_). The same applies for hash keys.
As for now, there is no way of knowing if a key represents a value or a sub-hash. If a sub-hash will be used as a key, the returned value will be its keys list.
Define hash table hashA with key Akey1 with value Aval1 use:
% hashSet Aval1 Akey1
Ahash
% hashGet Akey1
Ahash
% echo
$retval
Aval1
% hashKeys
Ahash
% echo
$retval
Akey1
%
hashstash
library
appeared when we've discovered the full power of the bash
eval
function.
As of the name hashstash
, it has two
meanings. The first, it means ‘stash
’
of hash functions. The second is, that hashstash
contains subhashes inside, so it looks like stash of packed information.
Hai Zaar
⟨haizaar@haizaar.com⟩
Gil Ran ⟨gil@ran4.net⟩
Linux |