6 lines
175 B
Bash
6 lines
175 B
Bash
#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
nohup /data/ymq/wan22-service/py3/bin/python ah.py > service.log 2>&1 &
|
|
echo $! > service.pid
|
|
echo "verify-delivery-service started, PID: $!"
|