show/hide this revision's text 3 edited tags
show/hide this revision's text 2 deleted 1122 characters in body

This is more an answer to the questions

We required a script that I had yesterday. Hope this would be of help to some.

Following scripts simulates associative Associative arrays in shell scripts. Its simple and very easy to understand.or Map is nothing but a never ending string that has keyValuePair saved as --name=Irfan --designation=SSE --company=My:SP:Own:SP:Company

spaces are replaced with ':SP:' for values

put() {    if [ "$#" != 3 ]; then exit 1; fi    mapName=$1; key=$2; value=`echo $3 | sed -e "s/ /:SP:/g"`    eval map="\"\$$mapName\""    map="`echo "$map" | sed -e "s/--$key=[^ ]*//g"` --$key=$value"    eval $mapName="\"$map\""get() {    mapName=$1; key=$2; valueFound="false"    eval map=\$$mapName    like data structure for keyValuePair in ${map};        case "$keyValuePair" in            --$key=*) value=`echo "$keyValuePair" | sed -e 's/^[^=]*=//'`                      valueFound="true"        if [ "$valueFound" == "true" ]; then break; fi    value=`echo $value | sed -e "s/:SP:/ /g"`put "newMap" "name" "Irfan Zulfiqar"put "newMap" "designation" "SSE"put "newMap" "company" "My Own Company"get "newMap" "company"echo $valueget "newMap" "name"echo $valueShell Scripting, any body?

show/hide this revision's text 1

Associative arrays in Shell scripts

This is more an answer to the questions that I had yesterday. Hope this would be of help to some.

Following scripts simulates associative arrays in shell scripts. Its simple and very easy to understand.

Map is nothing but a never ending string that has keyValuePair saved as --name=Irfan --designation=SSE --company=My:SP:Own:SP:Company

spaces are replaced with ':SP:' for values

put() {
    if [ "$#" != 3 ]; then exit 1; fi
    mapName=$1; key=$2; value=`echo $3 | sed -e "s/ /:SP:/g"`
    eval map="\"\$$mapName\""
    map="`echo "$map" | sed -e "s/--$key=[^ ]*//g"` --$key=$value"
    eval $mapName="\"$map\""
}

get() {
    mapName=$1; key=$2; valueFound="false"

    eval map=\$$mapName

    for keyValuePair in ${map};
    do
        case "$keyValuePair" in
            --$key=*) value=`echo "$keyValuePair" | sed -e 's/^[^=]*=//'`
                      valueFound="true"
        esac
        if [ "$valueFound" == "true" ]; then break; fi
    done
    value=`echo $value | sed -e "s/:SP:/ /g"`
}

put "newMap" "name" "Irfan Zulfiqar"
put "newMap" "designation" "SSE"
put "newMap" "company" "My Own Company"

get "newMap" "company"
echo $value

get "newMap" "name"
echo $value