Find process using a port
Jul 6, 2023·1 min read
you can execute the following cmd to find the process which occupies a specific port in linux.
sudo lsof -i :<port_number> -t | xargs ps -o pid,user,cmd -pJul 6, 2023·1 min read
you can execute the following cmd to find the process which occupies a specific port in linux.
sudo lsof -i :<port_number> -t | xargs ps -o pid,user,cmd -pFeb 5, 2021·1 min read
We can configure aliases very easily in bash or zsh. but those aliases are global to all directory. sometimes we need aliases or commands…
Jun 9, 2019·2 min read
Every programmer searches for some files more than he breathes in his life. Sometimes it is very daunting to navigate deeply nested folder…