1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-19 19:35:41 +02:00

mp3info, zbd, sfill: add mnemonic hints and option placeholders (#16919)

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
Abhisek Phago limbu 2025-06-24 08:02:23 -05:00 committed by GitHub
parent 88b420bef0
commit 426aac5cd2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 11 deletions

View file

@ -7,22 +7,22 @@
`mp3info {{path/to/file.mp3}}`
- Edit ID3v1 tags interactively:
- Edit ID3v1 tags [i]nteractively:
`mp3info -i {{path/to/file.mp3}}`
- Set values for ID3v1 tags in a specific MP3 file:
- Set values for ID3v1 tags in a specific MP3 file ([a]rtist, [t]itle, a[l]bum, [y]ear, and [c]omment):
`mp3info -a "{{artist_name}}" -t "{{song_title}}" -l "{{album_title}}" -y {{year}} -c "{{comment_text}}" {{path/to/file.mp3}}`
- Set the number of the track in the album for a specific MP3 file:
- Set the [n]umber of the track in the album for a specific MP3 file:
`mp3info -n {{track_number}} {{path/to/file.mp3}}`
- Print a list of valid genres and their numeric codes:
- [G]et a list of valid genres and their numeric codes:
`mp3info -G`
- Set the music genre for a specific MP3 file:
- Set the music [g]enre for a specific MP3 file:
`mp3info -g {{genre_number}} {{path/to/file.mp3}}`

View file

@ -9,8 +9,8 @@
- Show detailed configuration for a specific ZFS pool:
`zdb -C {{poolname}}`
`zdb {{[-C|--config]}} {{poolname}}`
- Show statistics about number, size and deduplication of blocks:
`zdb -b {{poolname}}`
`zdb {{[-b|--block-stats]}} {{poolname}}`

View file

@ -7,18 +7,18 @@
`sfill {{/path/to/mounted_disk_directory}}`
- Overwrite free space and inodes of a disk with 6 writes (fast but less secure) and show status:
- Overwrite free space and inodes of a disk with 6 writes (fast but [l]ess secure) and show status ([v]erbose):
`sfill -l -v {{/path/to/mounted_disk_directory}}`
- Overwrite free space and inodes of a disk with 1 write (very fast but insecure) and show status:
- Overwrite free space and inodes of a disk with 1 write (very fast but [l]ess secure [v]erbose) and show status:
`sfill -ll -v {{/path/to/mounted_disk_directory}}`
- Overwrite only free space of a disk:
- Overwrite only free space of a d[I]sk:
`sfill -I {{/path/to/mounted_disk_directory}}`
- Overwrite only free inodes of a disk:
- Overwrite only free [i]nodes of a disk:
`sfill -i {{/path/to/mounted_disk_directory}}`