Sprintboot 项目启动、停止脚本
start-gateway-dev.sh
nohup java -jar vipsoft-gateway-1.0.0.jar --spring.profiles.active=dev > startup.log 2>&1 &
stop-gateway-dev.sh
```shell
ps -ef | grep "vipsoft-gateway-1.0.0" | grep -v "grep" | awk '{print $2}'|xargs kill -9
```