Last active
April 8, 2017 23:43
-
-
Save joaofx/2eb15633394e98655529dfd1edac729f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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