Update cheatsheets

This commit is contained in:
ivuorinen
2024-06-06 00:14:06 +00:00
parent 11ed40e427
commit 76834469e1
3 changed files with 57 additions and 8 deletions

View File

@@ -31,3 +31,7 @@ source: https://github.com/tldr-pages/tldr.git
- Run tasks in a playbook starting at a specific task:
`ansible-playbook {{playbook}} --start-at {{task_name}}`
- Run tasks in a playbook without making any changes (dry-run):
`ansible-playbook {{playbook}} --check --diff`

41
tldr/audtool Executable file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# audtool
> Control Audacious using commands.
> More information: <https://manned.org/audtool>.
- Play/pause audio playback:
`audtool playback-playpause`
- Print artist, album, and song name of currently playing song:
`audtool current-song`
- Set volume of audio playback:
`audtool set-volume {{100}}`
- Skip to the next song:
`audtool playlist-advance`
- Print the bitrate of the current song in kilobits:
`audtool current-song-bitrate-kbps`
- Open Audacious in full-screen if hidden:
`audtool mainwin-show`
- Display help:
`audtool help`
- Display settings:
`audtool preferences-show`

View File

@@ -10,24 +10,28 @@ source: https://github.com/tldr-pages/tldr.git
- Compress a file, replacing it with a `gzip` archive:
`gzip {{file.ext}}`
`gzip {{path/to/file}}`
- Decompress a file, replacing it with the original uncompressed version:
`gzip -d {{file.ext}}.gz`
`gzip {{-d|--decompress path/to/file.gz}}`
- Compress a file, keeping the original file:
`gzip --keep {{file.ext}}`
`gzip {{-k|--keep path/to/file}}`
- Compress a file specifying the output filename:
- Compress a file, specifying the output filename:
`gzip -c {{file.ext}} > {{compressed_file.ext.gz}}`
`gzip {{-c|--stdout path/to/file}} > {{path/to/compressed_file.gz}}`
- Decompress a `gzip` archive specifying the output filename:
`gzip -c -d {{file.ext}}.gz > {{uncompressed_file.ext}}`
`gzip {{-c|--stdout}} {{-d|--decompress}} {{path/to/file.gz}} > {{path/to/uncompressed_file}}`
- Specify the compression level. 1=Fastest (Worst), 9=Slowest (Best), Default level is 6:
- Specify the compression level. 1 is the fastest (low compression), 9 is the slowest (high compression), 6 is the default:
`gzip -9 -c {{file.ext}} > {{compressed_file.ext.gz}}`
`gzip -{{1..9}} {{-c|--stdout}} {{path/to/file}} > {{path/to/compressed_file.gz}}`
- Display the name and reduction percentage for each file compressed or decompressed:
`gzip {{-v|--verbose}} {{-d|--decompress}} {{path/to/file.gz}}`