mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-20 05:15:46 +02:00
beep: add page (#1145)
This commit is contained in:
parent
cab0111b17
commit
6877adf7c5
1 changed files with 23 additions and 0 deletions
23
pages/linux/beep.md
Normal file
23
pages/linux/beep.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Beep
|
||||
|
||||
> A utility to beep the pc speaker.
|
||||
|
||||
- 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 -f {{frequency} -l {{duration}}`
|
||||
|
||||
- Play the C major scale:
|
||||
|
||||
`beep -f 262 -n -f 294 -n -f 330 -n -f 349 -n -f 392 -n -f 440 -n -f 494 -n -f 523`
|
Loading…
Add table
Reference in a new issue