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
Post a Comment