
Thanks to all the helpfull responces (and they have ALL been helpful in one way
or another) to my question about reducing the size of the path, I have a new set
of questions... :-)

I'd be interested in anyones ideas on how to use the PATH in a FOR statement,
without having to convert all the ';'s into ' 's first.

The way I currently do it, is this:

set fpath=%path
:pathlup
set pos=%@INDEX[;,%fpath]
if %pos == -1 goto exitpathlup
set fpath=%@SUBSTR[%fpath,0,%pos] %@SUBSTR[%fpath,%@EVAL[%pos+1]]
goto pathlup
:exitpathlup

%fpath can then be used in a FOR statement like usual... But the processing time
on the path is what I'd like to get rid of...

