Hey there !
I am trying to do this
P=`echo "${array[i][j]}" | grep $somevalue`
echo $P
But P seems to get filled with blank spaces. echo "${array[i][j]}" alone works fine but piping it to grep doesnt work it seems. Is there a better way of doing this?
Appreciate any help.
Ara