1
0
mirror of https://github.com/pcvolkmer/docker-pps.git synced 2025-07-01 12:42:54 +00:00

Use long and short argument names in README.md

This commit is contained in:
2022-03-02 11:41:37 +01:00
parent 693eeb8ebf
commit d79cc93adf

View File

@ -30,10 +30,11 @@ CONTAINER ID IMAGE PID UID COMMAND
123456789abc nginx 13572 101 nginx: worker process 123456789abc nginx 13572 101 nginx: worker process
``` ```
Use `-q` argument to show a list of PIDs Use `-q`/`--quiet` argument to show a list of PIDs
```shell ```shell
$ docker-pps -q $ docker-pps -q
$ docker-pps --quiet
``` ```
shows shows
``` ```
@ -43,8 +44,9 @@ shows
13572 13572
``` ```
To select another docker host, use `--host` argument To select another docker host, use `-H`/`--host` argument.
```shell ```shell
$ docker-pps --host=http://otherhost:1234 $ docker-pps -H http://otherhost:1234
``` $ docker-pps --host=ssh://otherhost:22
```