-
-
Save phidn/f5d8a148c7d8cbb479b350d94eae64ec to your computer and use it in GitHub Desktop.
Revisions
-
vitalybe revised this gist
Sep 7, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ @setlocal @echo off set userChoice=%1 rem The format is: -
vitalybe revised this gist
Sep 7, 2015 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,8 @@ setlocal @echo off set userChoice=%1 rem The format is: rem call :condition SHORTCUT FOLDER call :condition web c:\Git\SecThor\SecWeb\App\ call :condition cloud c:\Git\SecThor\SecCloud\dojo.backend\ call :condition good c:\Users\Vitaly\Dropbox\Projects\goodread-friends\ -
vitalybe created this gist
Sep 7, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ setlocal @echo off set userChoice=%1 call :condition web c:\Git\SecThor\SecWeb\App\ call :condition cloud c:\Git\SecThor\SecCloud\dojo.backend\ call :condition good c:\Users\Vitaly\Dropbox\Projects\goodread-friends\ endlocal popd GOTO :eof :condition rem We do PUSHD twice since endlocal does popd once :| if "%userChoice%"=="%1" pushd %2 & pushd %2 & echo pushd %2 if "%userChoice%"=="" echo %1 =^> %2 GOTO :eof