1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:27:35 +00:00

netstat: Resolve ports to service names

This commit is contained in:
Brendan Coles 2022-04-03 09:13:28 +00:00 committed by Andreas Kling
parent 64564a54d4
commit fd6d87df82
2 changed files with 47 additions and 1 deletions

View file

@ -5,7 +5,7 @@ netstat
## Synopsis
```sh
$ netstat [--all] [--list] [--tcp] [--udp] [--program]
$ netstat [--all] [--list] [--tcp] [--udp] [--numeric] [--program]
```
## Description
@ -21,6 +21,7 @@ Display network connections
* `-l`, `--list`: Display only listening sockets
* `-t`, `--tcp`: Display only TCP network connections
* `-u`, `--udp`: Display only UDP network connections
* `-n`, `--numeric`: Display numerical addresses
* `-p`, `--program`: Show the PID and name of the program to which each socket belongs
<!-- Auto-generated through ArgsParser -->