1 Star 0 Fork 0

凌云文档/alfresco-setup-7.2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
kill_soffice.sh 375 Bytes
一键复制 编辑 原始数据 按行查看 历史
凌云文档 提交于 2022-09-23 23:02 . ini
#!/bin/bash
#Soffice port
export SOFFICE_PORT=8100
KillSoffice() {
printf "\nKilling Soffice... \n"
PID=$(ps -ef | grep $SOFFICE_PORT | grep -v grep | awk '{ print $2 }')
if [ -z $PID ]
then
echo Soffice is already stopped
else
echo kill $PID for Soffice
kill -9 $PID
fi
}
###################################
KillSoffice
###################################
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xinyichv/alfresco-setup-7.2.git
git@gitee.com:xinyichv/alfresco-setup-7.2.git
xinyichv
alfresco-setup-7.2
alfresco-setup-7.2
master

搜索帮助