I have a text file with lots of links-each line has a link (i.e the separator is \'\\n\'). i want to write a script so that each link opens in a different tab in Firefox or
The solution that worked for me is:
set "fileList="
FOR /F "usebackq delims=," %%i IN ("C:\Documents and Settings\xwell\Desktop\urls.txt") DO (
start %%i
)
Four changes I made:
So, the text file urls.txt looks like:
http://www.rte.ie,
http://www.python.org,
http://www.bbc.co.uk,
http://www.google.com