From 5418e0ddd5785d5608ac5b62789f449112879e54 Mon Sep 17 00:00:00 2001 From: ZtRXR Date: Wed, 30 Aug 2023 16:18:16 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E6=9D=80=E6=8E=89=E5=8D=A0?= =?UTF-8?q?=E7=94=A8=E7=AB=AF=E5=8F=A3=E7=A8=8B=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- start.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/start.sh b/start.sh index 5959d86..299dcc9 100644 --- a/start.sh +++ b/start.sh @@ -14,5 +14,14 @@ cp ./word.json ./.output/ # 4. 切换到 ./.output 目录 cd ./.output +port=3000 +pid_list=$(lsof -t -i:$port) + +# 杀死这些进程 +for pid in $pid_list; do + echo "Killing process with PID $pid" + kill $pid +done + # 5. 执行 node ./server/index.mjs node ./server/index.mjs