in reply to Re^2: Can a Perl Script call another perl script?
in thread Can a Perl Script call another perl script?
is wrong. That must readfor /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 -name *.* -i -dir D:\Temp\PPM9422 +%f
for /f %f in (mylist.txt) do search -i -dir D:\Temp\PPM9422 %f
|
|---|