doc/Admin.md: improve formatting

This commit is contained in:
Pragmatic Software 2020-02-16 11:13:15 -08:00
parent 960c7f45db
commit eff2dab07f
1 changed files with 8 additions and 1 deletions

View File

@ -551,7 +551,14 @@ Usage: `Usage: ps [-atu]; -a show all information; -t show running time; -u show
### kill
Sends the interrupt signal to selected running background processes.
Usage: `Usage: kill [-a] [-t <seconds>] [-s <signal>] [pids...]; -a kill all processes; -t <seconds> kill processes running longer than <seconds>; -s send <signal> to processes`
Usage: `Usage: kill [-a] [-t <seconds>] [-s <signal>] [pids...]`
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
If neither options `-a` or `-t` are provided then the `pids...` option is required.