Forum Moderators: open
Each list has about 30-50 phrases and they all need to be combined. Let me know if you can think of anything. Thanks.
Pete Boyd
for /f "tokens=*" %a in (list1.txt) do @( for /f "tokens=*" %b in (list2.txt) do @( for /f "tokens=*" %c in (list3.txt) do @(echo %a %b %c) ) )
Bring up a cmd prompt ( start->programs->accessories->command prompt) and type it all in on one line. Who needs a gui these days?
But as always with Windows, how do you catch the output? Cut and paste doesn't work in my command window, and an output redirect to file doesn't work with this loop structure: > out.txt only catches the last iteration of the outer loop.
2 minutes typing in the command, and 10 minutes trying to catch the output, before giving up o command line Windows.
[edited by: Brett_Tabke at 9:21 pm (utc) on May 12, 2004]
[edit reason] Please - no "tool urls" please. [/edit]