doc/Admin.md: improve formatting

This commit is contained in:
Pragmatic Software 2020-02-16 11:15:36 -08:00
parent eff2dab07f
commit 4df826ae02
1 changed files with 9 additions and 3 deletions

View File

@ -546,7 +546,13 @@ Name | Description
### ps
Lists all currently running background processes.
Usage: `Usage: ps [-atu]; -a show all information; -t show running time; -u show user/channel`
Usage: `Usage: ps [-atu]`
Option | Description
--- | ---
`-a` | show all information
`-t` | show running time
`-u` | show user and channel
### kill
Sends the interrupt signal to selected running background processes.
@ -557,8 +563,8 @@ Option | Description
--- | ---
`-a` | kill all processes
`-t <seconds>` | kill processes running longer than `<seconds>`
`-s` | send `<signal>` to processes instead of interrupt signal
`pids...` | list of PIDs to kill
`-s <signal>` | send `<signal>` to processes instead of interrupt signal
`pids...` | space-separated list of PIDs to kill
If neither options `-a` or `-t` are provided then the `pids...` option is required.