mirror of
https://github.com/cgzirim/seek-tune.git
synced 2025-12-17 17:04:22 +00:00
7 lines
96 B
Bash
7 lines
96 B
Bash
#!/usr/bin/env bash
|
|
|
|
PID=$(sudo lsof -t -i:5000)
|
|
|
|
if [ -n "$PID" ]; then
|
|
sudo kill -9 $PID
|
|
fi
|