토론:리눅스 포트 프로세스 목록 확인

Jmnote bot (토론 | 기여)님의 2020년 11월 15일 (일) 01:10 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
Bash
Copy
netstat -anp | grep "LISTEN " | grep -v 127.0.0.1 | sed 's/:::/0 /g' | sed 's/[:\/]/ /g' | awk '{print $5"\t"$10}' | sort -ug
스누피
Bash
Copy
netstat -nltp | grep LISTEN | egrep -v '(127.0.0.1|::1:)' | awk '{print $4" "$7}' | sed 's/.\+://' | sed 's/ .\+\//\t/' | sort -ug
Bash
Copy
netstat -nltp | grep LISTEN | egrep -v '(127.0.0.1|::1:)' | sed 's/:::/0 /g' | sed 's/[:\/]/ /g' | awk '{print $5"\t"$10}' | sort -ug
편집자 J Jmnote PArangBot Jmnote bot