New lines are very much there in the variable "$final_list". echo it like this with double quotes:
echo "$final_list"
url1
url2
url3
OR better use printf:
printf "%s\n" "$final_list"
url1
url2
url3
New lines are very much there in the variable "$final_list". echo it like this with double quotes:
echo "$final_list"
url1
url2
url3
OR better use printf:
printf "%s\n" "$final_list"
url1
url2
url3