
Re: search pos index and move file
'
@foxidrive, I've been meaning to ask why you involve the type command
Code:
for /f "delims=" %%? in ( 'type "file"' ) do
when you could just
Code:
for /f "usebackq delims=" %%? in ( 'file' ) do
Isn't the result like exactly the same
