Update cheatsheets

This commit is contained in:
ivuorinen
2025-02-14 00:17:39 +00:00
parent 0b73eb34e9
commit cd175aefbd
3 changed files with 16 additions and 0 deletions

View File

@@ -16,6 +16,14 @@ source: https://github.com/tldr-pages/tldr.git
`ani-cli -d "{{anime_name}}"`
- [d]ownload a [r]ange of episodes:
`ani-cli -d -r "{{1 6}}" "{{anime_name}}"`
- [d]ownload the entire series (a range of all episodes):
`ani-cli -d -r "1 -1" "{{anime_name}}"`
- Use [v]LC as the media player:
`ani-cli -v "{{anime_name}}"`

View File

@@ -27,3 +27,7 @@ source: https://github.com/tldr-pages/tldr.git
- Start `gdb` and pass arguments to the executable:
`gdb --args {{executable}} {{argument1}} {{argument2}}`
- Skip debuginfod and pagination prompts and then print the backtrace:
`gdb -c {{core}} {{executable}} -iex 'set debuginfod enabled on' -iex 'set pagination off' -ex bt`

View File

@@ -31,3 +31,7 @@ source: https://github.com/tldr-pages/tldr.git
- Extract the last core dump of a program to a file:
`coredumpctl --output={{path/to/file}} dump {{program}}`
- Skip debuginfod and pagination prompts and then print the backtrace when using `gdb`:
`coredumpctl debug --debugger-arguments="-iex 'set debuginfod enabled on' -iex 'set pagination off' -ex bt"`