diff --git a/pages/common/elinks.md b/pages/common/elinks.md index 80e9c458f..ad027fecb 100644 --- a/pages/common/elinks.md +++ b/pages/common/elinks.md @@ -8,7 +8,7 @@ - Quit elinks: -`ctrl+c` +`Ctrl+C` - Dump output of webpage to console, colorizing the text with ANSI control codes: diff --git a/pages/common/screen.md b/pages/common/screen.md index 2d81a8ee8..66b3b522d 100644 --- a/pages/common/screen.md +++ b/pages/common/screen.md @@ -24,7 +24,7 @@ - Detach from inside a screen: -`ctrl+A D` +`Ctrl+A D` - Kill a detached screen: diff --git a/pages/common/tail.md b/pages/common/tail.md index e87e3b4b9..592f72a7c 100644 --- a/pages/common/tail.md +++ b/pages/common/tail.md @@ -14,6 +14,6 @@ `tail -c {{num}} {{file}}` -- Keep reading file until ctrl-c: +- Keep reading file until `Ctrl+C`: `tail -f {{file}}` diff --git a/pages/common/tmux.md b/pages/common/tmux.md index 3b76f9c9f..335449bbd 100644 --- a/pages/common/tmux.md +++ b/pages/common/tmux.md @@ -24,7 +24,7 @@ - Detach from session: -`ctrl+b d` +`Ctrl+B D` - Kill session: diff --git a/pages/linux/xsel.md b/pages/linux/xsel.md index 286492cb7..fcf827844 100644 --- a/pages/linux/xsel.md +++ b/pages/linux/xsel.md @@ -2,7 +2,7 @@ > X11 selection and clipboard manipulation tool. -- Use a command's output as input of the clip[b]oard (equivalent to Ctrl+C): +- Use a command's output as input of the clip[b]oard (equivalent to `Ctrl+C`): `echo 123 | xsel -ib` @@ -10,7 +10,7 @@ `cat {{file}} | xsel -ib` -- Output the clipboard's contents into the terminal (equivalent to Ctrl+V): +- Output the clipboard's contents into the terminal (equivalent to `Ctrl+V`): `xsel -ob`