#cheatsheet
Находим все процессы, слушающие конкретный порт.
https://sebastiandedeyne.com/unix-things/finding-out-which-ports-are-in-use/
Находим все процессы, слушающие конкретный порт.
https://sebastiandedeyne.com/unix-things/finding-out-which-ports-are-in-use/
Sebastiandedeyne
Finding out which ports are in use
Sometimes you want to spin up a process, but the port it wants to bind to is already in use. Or a port isn't listening to a process as you expected. lsof is a debugging life saver in these situations.
lsof -i -P -n | grep LISTEN
This will list all processes…
lsof -i -P -n | grep LISTEN
This will list all processes…
#cheatsheet
Советы от Марселя Почета по эффективному использованию терминала.
https://twitter.com/marcelpociot/status/1481567499204321281
Советы от Марселя Почета по эффективному использованию терминала.
https://twitter.com/marcelpociot/status/1481567499204321281
Twitter
Marcel Pociot 🧪
Developers, get to know your terminal! Here are some 🔥 tips for bash and ZSH users that will make you more productive. 🧵
👍1