Skip to content

Instantly share code, notes, and snippets.

@libraplanet
Created February 16, 2013 07:51
Show Gist options
  • Save libraplanet/4965997 to your computer and use it in GitHub Desktop.
Save libraplanet/4965997 to your computer and use it in GitHub Desktop.
@SETLOCAL
@CD /d %1
@SHIFT
@SHIFT
@SET _ARGS=
:recursive
@IF NOT "%~1" == "" (
@SET _ARGS=%_ARGS% %1
@SHIFT /1
@GOTO :recursive
)
@CALL %0 %_ARGS%
@ENDLOCAL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment