mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
11 lines
153 B
Bash
11 lines
153 B
Bash
#bin/bash
|
|
|
|
execfile=./mayfly-go
|
|
|
|
if [ ! -x "${execfile}" ]; then
|
|
sudo chmod +x "${execfile}"
|
|
fi
|
|
|
|
nohup "${execfile}" &
|
|
|
|
echo "The mayfly-go running..." |