Skip to content

Instantly share code, notes, and snippets.

@taichi
Created July 17, 2014 01:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taichi/e3c08c6acf7c486708fe to your computer and use it in GitHub Desktop.
Save taichi/e3c08c6acf7c486708fe to your computer and use it in GitHub Desktop.
gradle task selection with peco on windows.
@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