close port 31337 code example
Example 1: stop port ubintu
sudo kill -9 `sudo lsof -t -i:9001`
Example 2: stop port
kill -9 $(sudo lsof -t -i:'portName')
//Ex. if portname is 3000
//then we will execute "kill -9 $(sudo lsof -t -i:3000)"
sudo kill -9 `sudo lsof -t -i:9001`
kill -9 $(sudo lsof -t -i:'portName')
//Ex. if portname is 3000
//then we will execute "kill -9 $(sudo lsof -t -i:3000)"