mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-05 04:55:23 +02:00

* batch1 * batch2 * batch3 * batch4 * Update matchpathcon.md * Update pages/linux/arecord.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Update pages/linux/arecord.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Update pages/linux/arecord.md Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
24 lines
673 B
Markdown
24 lines
673 B
Markdown
# beep
|
|
|
|
> A utility to beep the PC speaker.
|
|
> More information: <https://github.com/spkr-beep/beep>.
|
|
|
|
- Play a beep:
|
|
|
|
`beep`
|
|
|
|
- Play a beep that repeats:
|
|
|
|
`beep -r {{repetitions}}`
|
|
|
|
- Play a beep at a specified frequency (Hz) and duration (milliseconds):
|
|
|
|
`beep -f {{frequency}} -l {{duration}}`
|
|
|
|
- Play each new frequency and duration as a distinct beep:
|
|
|
|
`beep -f {{frequency}} -l {{duration}} {{[-n|--new]}} -f {{frequency}} -l {{duration}}`
|
|
|
|
- Play the C major scale:
|
|
|
|
`beep -f {{262}} {{[-n|--new]}} -f {{294}} {{[-n|--new]}} -f {{330}} {{[-n|--new]}} -f {{349}} {{[-n|--new]}} -f {{392}} {{[-n|--new]}} -f {{440}} {{[-n|--new]}} -f {{494}} {{[-n|--new]}} -f {{523}}`
|