Skip to content

Instantly share code, notes, and snippets.

@joaofx
Last active April 8, 2017 23:43
Show Gist options
  • Save joaofx/2eb15633394e98655529dfd1edac729f to your computer and use it in GitHub Desktop.
Save joaofx/2eb15633394e98655529dfd1edac729f to your computer and use it in GitHub Desktop.
@echo off
REM
REM p Project dotnet run
REM will execute 'dotnet run' in 'Project' directory
REM after execution, will return to root
REM
pushd %1
for /f "tokens=1,* delims= " %%a in ("%*") do set ALL_BUT_FIRST=%%b
%ALL_BUT_FIRST%
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment