mirror of
https://github.com/kwinH/fastApi.git
synced 2025-12-24 13:07:58 +08:00
15 lines
217 B
Bash
Executable File
15 lines
217 B
Bash
Executable File
#/bin/bash
|
|
make
|
|
|
|
pid=`lsof -i tcp:3000|grep "*:"|awk '{print $2}'|uniq`
|
|
|
|
if [ $pid ]; then
|
|
echo $pid
|
|
kill -1 $pid
|
|
else
|
|
./bin/fastApi_mac server &
|
|
fi
|
|
|
|
|
|
# lsof -i tcp:3000|grep "*:"|awk '{print $2}'|xargs kill -1
|