Files
storyforge/scripts/stop_douyin_workbench.sh
2026-03-21 04:57:18 +08:00

8 lines
146 B
Bash
Executable File

#!/bin/sh
set -eu
PORT="${DOUYIN_WORKBENCH_PORT:-3618}"
lsof -tiTCP:"$PORT" -sTCP:LISTEN | xargs -r kill
echo "douyin workbench stopped: $PORT"