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
| read -p "please input your branch name, e.g. dev " branch | |
| if [ n "$branch"]; then | |
| # if no branch name, master as default | |
| branch="master" | |
| fi | |
| # shutdown tomcat | |
| echo "shutdown tomcat" | |
| sh /usr/local/tomcat/bin/shutdown.sh | |
| fuser -k 8080/tcp |