unix to wintel

i have to do the below thing in wintel, can someone plz explain me how to
do this ?

grep "12may2011"  /home/inf/msi/*.pdf  


grep "12may2011"  /home/inf/msi/*.pdf   | mv /home/temp/ { }

and the resultant files i have to move to /home/temp/

how can i gerenate this script in wintel ( windows )

Hi,

I don't understand your task. Do you want to move all 'pdf' files to '/home/temp' which contains the word '12may2011'? What part is specific to Windows? Is the directory '/home/temp' on Windows? I'm lost.

I would thank if you can explain this better.

Regards,
Birei

The equivalent windows command is find

G:\>
G:\>find "fish" test.txt
---------- TEST.TXT
fish
G:\>

How you then feed that into another command, I've no idea....