I'd like to know why this works:
arr=()
fun() { arr[$1]=$2; }
fun 1 2
echo ${arr[1]}
# echoes '2'
but this doesn't:
arr=()
fun() { arr[$1]=$2; }
fun 1 2 &
wait
echo ${arr[1]}
# echoes a blank line
|
|
|
By running |
|||||
|
|
This can't work, as running the function asynchronously creates a new shell context, which can't modify the parent context's environment. This is much similar to pipes into control structures, where variables modified inside the control structure won't be modified in the parent outside the pipe. |
|||
|
|