Update cheatsheets

This commit is contained in:
ivuorinen
2025-07-24 00:22:02 +00:00
parent faccb95d5c
commit e6afdf72af
27 changed files with 113 additions and 50 deletions

View File

@@ -14,8 +14,8 @@ source: https://github.com/tldr-pages/tldr.git
- Play the first 10 seconds of a specific file at 2500 Hz:
`aplay --duration={{10}} --rate={{2500}} {{path/to/file}}`
`aplay {{[-d|--duration]}} {{10}} {{[-r|--rate]}} {{2500}} {{path/to/file}}`
- Play the raw file as a 22050 Hz, mono, 8-bit, Mu-Law `.au` file:
`aplay --channels={{1}} --file-type {{raw}} --rate={{22050}} --format={{mu_law}} {{path/to/file}}`
`aplay {{[-c|--channels]}} {{1}} {{[-t|--file-type]}} {{raw}} {{[-r|--rate]}} {{22050}} {{[-f|--format]}} {{mu_law}} {{path/to/file}}`