I have a line in bash file like ---
curl -L $domain/url1 options
domain is already read from another text file and domains like
abc.com
google.com
yahoo.com
and i have another separate file which contains further URL (lot in number):
url1
url2
url3
....
url1000
I want to replace that url and append that like:
curl -L abc.com/url1 options
curl -L abc.com/url2 options
curl -L abc.com/url3 options
....
curl -L $abc.com/url1000 options
It is taking too much time manually, so I want to automate this process.