1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:47:37 +00:00

netstat: Add -e argument

This adds information about the user owning the process to our netstat
output. We do not fully match the behaviour of Linux as we don't show
an inode information.
This commit is contained in:
Fabian Dellwing 2023-05-01 20:14:22 +02:00 committed by Jelle Raaijmakers
parent 34d699b678
commit 2cd59df443
2 changed files with 19 additions and 1 deletions

View file

@ -5,7 +5,7 @@ netstat
## Synopsis
```sh
$ netstat [--all] [--list] [--tcp] [--udp] [--numeric] [--program] [--wide]
$ netstat [--all] [--list] [--tcp] [--udp] [--numeric] [--program] [--wide] [--extend]
```
## Description
@ -21,5 +21,6 @@ Display network connections
* `-n`, `--numeric`: Display numerical addresses
* `-p`, `--program`: Show the PID and name of the program to which each socket belongs
* `-W`, `--wide`: Do not truncate IP addresses by printing out the whole symbolic host
* `-e`, `--extend`: Display more information
<!-- Auto-generated through ArgsParser -->