写个shell脚本

时间:2023-03-09 05:34:17
写个shell脚本

以前更新网站程序都是手动噼里啪啦敲代码,即麻烦又慢,还神经紧张。
终于忍不住写个shell脚本。

cd /usr/local/tomcat7/apache-tomcat-9.0.0.M4/
bin/shutdown.sh
kill -9 $(pgrep -f tomcat)
rm -rf webapps/*
mv ROOT.war webapps
bin/startup.sh