Add TelnetServer man page

This commit is contained in:
Larkin Nickle 2019-09-29 16:18:07 -04:00 committed by Andreas Kling
parent a5e5a3fab7
commit e7c2467231

View file

@ -0,0 +1,24 @@
## Name
TelnetServer - Serenity telnet server
## Synopsis
```**sh
$ TelnetServer [options]
```
## Description
`TelnetServer` is a basic telnet server for Serenity. By default, it
runs on port 23 and provides a shell upon connection.
## Options
* `-p`: Choose different port for TelnetServer to attach to.
* `-c`: Choose different program for TelnetServer to run on connection.
## Examples
```sh
$ TelnetServer -p 24 -c /usr/bin/nyancat
```