This website works better with JavaScript
Página inicial
Explorar
Ajuda
Registrar
Entrar
hb_tousu
/
acl_tousu
Observar
2
Favorito
0
Fork
0
Arquivos
Issues
0
Pull Requests
0
Wiki
Tree:
6cde7fe2d0
Branches
Tags
dev
master
test
prod-20230221
test-20230221
prod-20230217
test-20230217
test-20230129
test-20230116
test-20230113
test-20230111
test-20230109
test-20230107
acl_tousu
/
doc
/
部署文档
/
正式环境
/
bin
/
stop.sh
stop.sh
102 B
Histórico
Raw
1
2
3
4
5
6
#!/bin/bash
for i in $(ps -ef|grep aclTousu.jar |grep -v grep|awk '{print $2}')
do
kill -9 $i;
done