Update cheatsheets

This commit is contained in:
ivuorinen
2025-02-05 00:17:34 +00:00
parent 85f0642d2d
commit efdf464901
2 changed files with 16 additions and 0 deletions

View File

@@ -31,3 +31,11 @@ source: https://github.com/tldr-pages/tldr.git
- List all the available packages:
`opkg list`
- Find out which package owns a file:
`opkg search {{/path/to/file}}`
- List all files belonging to a package:
`opkg files {{package}}`

View File

@@ -23,3 +23,11 @@ source: https://github.com/tldr-pages/tldr.git
- Reset all modes to reasonable values for the current terminal:
`stty sane`
- Switch between raw and normal mode:
`stty {{raw|cooked}}`
- Turn character echoing off or on:
`stty {{-echo|echo}}`