This comes useful when I need to copy some folders directly from a CVS project to another file systems without the need to export the project from the CVS.
FOR /F "tokens=*" %%G IN ('DIR /B /A:D /S *CVS') DO rmdir /S /Q %%G
If you paste the script directly in the Windows console, replace %%G with %G.
No comments:
Post a Comment