#!/bin/bash
touch temp.text
lsof -n -i4TCP:$1 | awk '{print $2}' > temp.text
pidToStop=`(sed '2q;d' temp.text)`
> temp.text
if [[ -n $pidToStop ]]
then
kill -9 $pidToStop
echo "Congrats!! $1 is stopped."
else
echo "Sorry nothing running on above port"
fi
rm temp.text
Last active
October 24, 2019 22:00
-
-
Save yanil3500/e5b8ffbdfda70442a4ed59b2646f32fa to your computer and use it in GitHub Desktop.
[Stop Using Port] Bash script for terminating a process using a specific port #bash #tcp #ports
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment