mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2025-01-08 16:27:35 +08:00
8 lines
84 B
Bash
8 lines
84 B
Bash
|
#!/bin/bash
|
||
|
# kill进程
|
||
|
#
|
||
|
# 参数:
|
||
|
# $1 UUID
|
||
|
|
||
|
pkill -f $1
|
||
|
echo "服务已停止"
|