My Quotes


When U were born , you cried and the world rejoiced
Live U'r life in such a way that when you go
THE WORLD SHOULD CRY






Sunday, January 6, 2013

Recursive windows commands


To do a recursive move do:
            for /r %x in (foo) do move "%x" "drive:\path\bar"
To do a recursive rename do:
            for /r %x in (*.c) do ren "%x" *.cpp

No comments :