file - batch script to read text separated by delimiter -


i have text file contains list of urls separated comma. e.g. url1,url2,url3 etc.

i have batch script launches url in text file.

for /f "delims=," %%a in (listofurls.txt) (start /wait iexplore.exe %%a) 

currently, launches 1st url , stops. not reading subsequent urls. needed.

@echo off setlocal /f "delims=" %%u in (listofurls.txt) (  %%i in (%%u) echo start iexplore %%i ) 

the echo show intended. execute, remove echo keyword.


Comments

Popular posts from this blog

blackberry 10 - how to add multiple markers on the google map just by url? -

php - guestbook returning database data to flash -

delphi - Dynamic file type icon -