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

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -