Created
July 17, 2014 01:09
-
-
Save taichi/e3c08c6acf7c486708fe to your computer and use it in GitHub Desktop.
gradle task selection with peco on windows.
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 | |
for /f %%i in ('gradlew tasks ^| peco') do ( | |
echo gradlew %%i | |
gradlew %%i | |
break | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment