docs: add "Examples"

This commit is contained in:
Ryo Ota 2023-08-09 08:52:43 +09:00
parent e4f1e0989d
commit a3b74d23c8

View file

@ -1,2 +1,24 @@
# handy-sshd # handy-sshd
Portable SSH Server Portable SSH Server
## Examples
```bash
# Listen on 2222 and accept user name "john" with password "mypassword"
handy-sshd -p 2222 --user "john:mypassword"
```
```bash
# Listen on 2222 and accept user name "john" without password
handy-sshd -p 2222 --user "john:"
```
```bash
# Listen on 2222 and accept users "john" and "alice" without password
handy-sshd -p 2222 --user "john:" --user "alice:"
```
```bash
# Listen on unix domain socket
handy-sshd --unix-socket /tmp/my-unix-socket --user "john:"
```