In bash I'm trying to collect my grep results in array, each cell holding each line. I'm downloaing urls with this line
wget -O index -E $CurrentURL
and then i want to grep the 'index' file results (other urls) into array each line per cell, what should be the correct syntax?
Array=(
grep "some expression" index)
??