in reply to Re^2: Can a Perl Script call another perl script?
in thread Can a Perl Script call another perl script?

What is the content of "mylist.txt"?
for /f %f in (mylist.txt) do search -name -i *.* -dir D:\Temp\PPM9422 +%f
is wrong. That must read
for /f %f in (mylist.txt) do search -name *.* -i -dir D:\Temp\PPM9422 +%f
or if you want to search for *.* then you can omit the -name parameter:
for /f %f in (mylist.txt) do search -i -dir D:\Temp\PPM9422 %f


holli, /regexed monk/