I need to parse links from an array[0] - array[3] which are all URLs and send to a for loop which is cURL and will download the html and shoot it too another array. Getting the error no URL specified!
echo "${array[0]}"
for i in ${array[@]}
do
dataset=($(curl -d \ $i))
done