bash commands
# list all open files on the system that are using the port 5000
lsof -i :5000
# kill the process with PID 546
kill 546
# list all open files on the system that are using the port 5000
lsof -i :5000
# kill the process with PID 546
kill 546
Comments