Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-19 00:18:33 +00:00
parent a9720510d1
commit ee2fe18e61
8 changed files with 9 additions and 9 deletions

View File

@@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git
- Open the man page for a command in a browser (`BROWSER` environment variable can replace `=browser_name`):
`man {{[-H|--html=]}}{{browser_name}} {{command}}`
`man {{[-Hbrowser_name|--html=browser_name]}} {{command}}`
- Display the man page for a command from section 7:

View File

@@ -24,6 +24,6 @@ source: https://github.com/tldr-pages/tldr.git
`shutdown -h 13:00`
- [c]ancel a pending shutdown/reboot operation:
- Cancel a pending shutdown/reboot operation:
`shutdown -c`

View File

@@ -8,11 +8,11 @@ source: https://github.com/tldr-pages/tldr.git
> Troubleshooting tool for tracing system calls.
> More information: <https://manned.org/strace>.
- Start tracing a specific [p]rocess by its PID:
- Start tracing a specific process by its PID:
`strace {{[-p|--attach]}} {{pid}}`
- Trace a [p]rocess and filter output by system call [e]xpression:
- Trace a process and filter output by system call [e]xpression:
`strace {{[-p|--attach]}} {{pid}} -e {{system_call,system_call2,...}}`