Bolded SIGKILL & fixed backslash escaping.

SIGKILL is a literal and bolded in other documentation,
such as https://man7.org/linux/man-pages/man7/signal.7.html.

Signed-off-by: Kelton Bassingthwaite <KeltonBassingthwaite@gmail.com>
(cherry picked from commit 918168c40f)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Kelton Bassingthwaite 2021-06-26 17:38:12 -06:00 committed by Sebastiaan van Stijn
parent 1ca0b09336
commit 88d09e8fbd
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ interactively. You can attach to the same contained process multiple times
simultaneously, screen sharing style, or quickly view the progress of your simultaneously, screen sharing style, or quickly view the progress of your
detached process. detached process.
To stop a container, use `CTRL-c`. This key sequence sends `SIGKILL` to the To stop a container, use `CTRL-c`. This key sequence sends **SIGKILL** to the
container. You can detach from the container (and leave it running) using a container. You can detach from the container (and leave it running) using a
configurable key sequence. The default sequence is `CTRL-p CTRL-q`. You configurable key sequence. The default sequence is `CTRL-p CTRL-q`. You
configure the key sequence using the **--detach-keys** option or a configuration configure the key sequence using the **--detach-keys** option or a configuration
@ -29,8 +29,8 @@ of the following:
* **a-z** (a single lowercase alpha character ) * **a-z** (a single lowercase alpha character )
* **@** (at sign) * **@** (at sign)
* **[** (left bracket) * **[** (left bracket)
* **\\** (two backward slashes) * **\\\\** (two backward slashes)
* **_** (underscore) * **_** (underscore)
* **^** (caret) * **^** (caret)
These **a**, **ctrl-a**, **X**, or **ctrl-\\** values are all examples of valid key These **a**, **ctrl-a**, **X**, or **ctrl-\\** values are all examples of valid key