diff options
author | Fabian Dellwing <fabian.dellwing@gmail.com> | 2023-04-14 11:34:16 +0200 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-04-26 12:33:25 -0600 |
commit | 552e317a89244a1bc3557786fec3f19b40f8ae13 (patch) | |
tree | 1d8eb8f6b05e10a76afac23914df6638d2adba05 /Base/usr | |
parent | f61947fa9eb8ebc288e3f627897d0b4e3b4dd8e1 (diff) | |
download | serenity-552e317a89244a1bc3557786fec3f19b40f8ae13.zip |
nc: Sort command line arguments alphabetically
Diffstat (limited to 'Base/usr')
-rw-r--r-- | Base/usr/share/man/man1/nc.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Base/usr/share/man/man1/nc.md b/Base/usr/share/man/man1/nc.md index 485ec91931..3ce46466fe 100644 --- a/Base/usr/share/man/man1/nc.md +++ b/Base/usr/share/man/man1/nc.md @@ -5,7 +5,7 @@ nc ## Synopsis ```sh -$ nc [--listen] [--verbose] [--udp] [-N] [--length ] <target> <port> +$ nc [--length ] [--listen] [-N] [--udp] [--verbose] <target> <port> ``` ## Description @@ -14,11 +14,11 @@ Network cat: Connect to network sockets as if it were a file. ## Options +* `-I`, `--length`: Set maximum tcp receive buffer size * `-l`, `--listen`: Listen instead of connecting -* `-v`, `--verbose`: Log everything that's happening -* `-u`, `--udp`: UDP mode * `-N`: Close connection after reading stdin to the end -* `-I`, `--length`: Set maximum tcp receive buffer size +* `-u`, `--udp`: UDP mode +* `-v`, `--verbose`: Log everything that's happening ## Arguments |