mirror of
https://github.com/infinition/Bjorn.git
synced 2024-11-11 22:38:39 +03:00
12 lines
250 B
Bash
12 lines
250 B
Bash
#!/bin/bash
|
|
# Script to kill processes using port 8000
|
|
PORT=8000
|
|
PIDS=$(lsof -t -i:$PORT)
|
|
if [ -n "$PIDS" ]; then
|
|
echo "Killing the following PIDs using port $PORT: $PIDS"
|
|
kill -9 $PIDS
|
|
else
|
|
echo "No processes found using port $PORT"
|
|
fi
|
|
|