To educate the beginners and make their life easy.
#To kill process by port:
npx kill-port 3000
Or
kill -9 $(sudo lsof -t -i:8080)
#To run ssh file
sh ./filename.sh
#To kill the pid by port
lsof -i :3000
kill -9 pid
#To kill process by port: npx kill-port 3000 Or kill -9 $(sudo lsof -t -i:8080) #To run ssh file sh ./filename.sh #To kill the pid by po...
No comments:
Post a Comment