1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:26:01 +02:00

nc: remove redundant examples

This commit is contained in:
Starbeamrainbowlabs 2020-12-30 13:58:06 +00:00 committed by Axel Navarro
parent 653dbf065b
commit 06b697b9f7

View file

@ -15,19 +15,11 @@
`nc -w {{timeout_in_seconds}} {{ipaddress}} {{port}}`
- Serve a file:
`nc -l {{port}} < {{file}}`
- Receive a file:
`nc {{ip_address}} {{port}} > {{file}}`
- Server stay up after client detach:
- Keep the server up after the client detaches:
`nc -k -l {{port}}`
- Client stay up after EOF:
- Keep the client up even after EOF:
`nc -q {{timeout}} {{ip_address}}`