I have two files, one with url's other with id's
for line in $(cat urls_file); do
for id in $(cat ids_file); do
touch topic_$id
curl $line|grep "data\-topic=">topic_$id
done
done
BUT it does for every $line all the $id 's and i want to do for each line each id.