Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

linux which process is using a port

$ sudo netstat -ltnp | grep ':80' 
Comment

bash find process using port

lsof -i :8080
Comment

check process on a given port linux

sudo netstat -peanut | grep ":8000 "
Comment

check process on port linux

lsof -i
Comment

See process on port

netstat -ano | findstr 8080Code language: Bash (bash)
Comment

PREVIOUS NEXT
Code Example
Shell :: install nodejs with pacman 
Shell :: @react-native-community/netinfo 
Shell :: npm install custom registry 
Shell :: access desktop from wsl 
Shell :: replace all substring in a given string 
Shell :: clean my ubuntu 
Shell :: wget as file name 
Shell :: intall mondg brew 
Shell :: git default remote 
Shell :: opencv install 
Shell :: terminal matrix effect 
Shell :: install poetry 
Shell :: how to uncommit last commit in git 
Shell :: check git settings terminal 
Shell :: linux export path 
Shell :: open chrome without web security mac 
Shell :: reduce file size of mp4 using ffmpeg 
Shell :: bash grep find lines that start with word 
Shell :: run specific migration file django 
Shell :: create cert from pem 
Shell :: ubuntu 20 install quemu 
Shell :: compare local git branch with remote 
Shell :: zsh check if file exists 
Shell :: how to change directory if folder name have space 
Shell :: fortinet vpn client for ubuntu 
Shell :: update pip 
Shell :: installing react router dom with yarn 
Shell :: nuxt .env file not load 
Shell :: homebrew zsh completion 
Shell :: grep but exclude directory 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =