mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2025-01-16 12:17:46 +08:00
8 lines
87 B
Bash
8 lines
87 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# 查看进程是否正在运行
|
||
|
#
|
||
|
# 参数:
|
||
|
# $1 UUID
|
||
|
|
||
|
ps -ef | grep $1
|