I need help with this statement at the moment when executed in a batch file it will launch all lines of a text file e.g.
file1.txt:
notepad
wordpad
so it will launch:
start notepad
start wordpad
Although I would like to be able to specify which line it will execute, instead of executing them all (which it is doing at the moment)
for /f "delims=|" %%i in (file1.txt) do @start "x" %%i
Any help would be greatly appreciated