https://github.com/kwon37xi/wrappers-easy-executor
gradlew/mvnw easy executor
https://github.com/kwon37xi/wrappers-easy-executor
Last synced: 3 months ago
JSON representation
gradlew/mvnw easy executor
- Host: GitHub
- URL: https://github.com/kwon37xi/wrappers-easy-executor
- Owner: kwon37xi
- License: apache-2.0
- Created: 2022-08-16T07:35:36.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-16T07:58:53.000Z (almost 3 years ago)
- Last Synced: 2023-07-31T12:10:59.666Z (almost 2 years ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wrappers-easy-executor
* `gradlew`, `mvnw` 등을 쉽게 실행하게 해주는 실행기
* Linux/MacOS 등 전용## gw
* 프로젝트 하위디렉토리 어디에서라도 `gw` 를 실행하면 부모디렉토리의 `gradlew` 명령을 찾아서 실행해준다.### install
```
wget -O ~/.local/bin/gw "https://raw.githubusercontent.com/kwon37xi/wrappers-easy-executor/main/gw" && chmod +x ~/.local/bin/gw
```### usage
```
# 프로젝트 하위 디렉토리에서
gw tasks
```## mw
* 프로젝트 하위디렉토리 어디에서라도 `mw` 를 실행하면 부모디렉토리의 `mvnw` 명령을 찾아서 실행해준다.### install
```
wget -O ~/.local/bin/mw "https://raw.githubusercontent.com/kwon37xi/wrappers-easy-executor/main/mw" && chmod +x ~/.local/bin/mw
```### usage
```
# 프로젝트 하위 디렉토리에서
mw compile
```