hexdump, logger, netstat, n, nm, pdfgrep: move to common (#6549)

This commit is contained in:
marchersimon
2021-09-18 23:05:08 +02:00
committed by GitHub
parent f79d8e56e3
commit 442a013cb8
17 changed files with 2 additions and 129 deletions

View File

@@ -0,0 +1,24 @@
# netstat
> 显示与网络相关的信息,如打开的连接、打开的套接字端口等。
> 更多信息:<https://www.unix.com/man-page/osx/1/netstat>.
- 列出所有端口:
`netstat -a`
- 列出所有被侦听端口:
`netstat -l`
- 列出侦听的 TCP 端口:
`netstat -t`
- 显示监听给定协议监听的 PID 和程序名:
`netstat -p {{协议}}`
- 打印路由表:
`netstat -nr`