Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just want that Mac OS X 10.6 does a hardware beep sound like in open suse and other distributions. I tried following approaches

Terminal -> beep = -bash: beep: command not found

Terminal -> say beep = voice speaks out beep (Not a Hardware beep but awesome ;) )

applescript -> beep = Macintosh bell (I want a Hardware beep!)

Does anybody know how to make the Hardware beep in bin/bash or applescript?

share|improve this question
1  
@elhombre, what makes you think Mac OS X can even do such a thing? – Carl Norum Jun 27 '10 at 16:38
8  
Try: say "beep" if you don't find anything, closest I can think of. – Patrik Björklund Jun 27 '10 at 16:42
7  
@Patrik - +1, nice. printf "\a" gives the OS beep, if that helps. – Carl Norum Jun 27 '10 at 16:44
5  
@Carsten: a Mac is a PC. PC = Personal Computer. It's just not an IBM(-compatible) PC. – Paul R Jun 27 '10 at 21:09
1  
@elhombre, that PRAM beep is not played by the OS, so it's unlikely you'll do that from your program. – Carl Norum Jun 27 '10 at 22:10
show 6 more comments

7 Answers

write echo ^G in the bash. to create the ^G press ctrl+v and then ctrl+g.

share|improve this answer
9  
/usr/bin/printf "\a" and osascript -e "beep 1" also work well enough – Dara May 23 '11 at 11:31
4  
echo -ne '\007' – wongo888 Jul 27 '11 at 7:38
does it work when audio bell is disabled in Terminal.app? – Vlad Lazarenko Mar 19 '12 at 17:11
no it does not work with audio bell disabled. – mxhaack Apr 11 '12 at 14:51

tput bel works in most shells.

In OS X, this (and any other command that makes the bell go off) also gets you a badge if the command is executed when Terminal was not in the foreground:

share|improve this answer
4  
Awesome side effect (at least in Lion terminal) of having a bell go off in your terminal when it is in the background is that the icon on the doc jumps, and you get a red indicator saying there has been something completed. Try this: "sleep 5; tput bel" run that command and then tab out of the terminal, when the bell goes off you get an alert. Just what I was looking for! – BadPirate Jan 5 '12 at 18:37

Printing \a did not always work for me (MBA, 10.7.4). I use this instead:

say "beep"
share|improve this answer
the only way worked for me (OSX 10.8). Neither echo -e "\a" nor printf "\a" didn't work. – Valeriy Van Jul 30 '12 at 16:10
1  
Wow - you can put anything in there, e.g.:say "build completed" – Pete Sep 27 '12 at 18:10
1  
LOL. This is fun! – RickyA Sep 30 '12 at 13:42
The best usage of it I see in Little Snitch - when I run an fullscreen app and do not see regular LS popup warnings, it says me them (only when in fullscreen), i.e. what app has been blocked trying to connect to some host. Really nice. Some time ago I needed to track changes on a website during a day, so instead of sitting in front of my screen, I used say to let me know what is going on (obviously meaningful text only - those were sale ads). – Andrei Feb 10 at 12:29
1  
Really disturbing version: say -v Whisper I own you – Randy Howard Mar 24 at 9:35
show 1 more comment

In the terminal type :

echo -e "\a"

The -e parameter tells echo to process escaped characters. As the \n is the new line character, the \a is the bell one (the same as Ctrl+G).

share|improve this answer
printf "\a"

If you look at man printf, it gives you a list of escaped characters, including \a:

\a      Write a <bell> character.
share|improve this answer

If you've got XCODE installed you can make a beep/bell. I haven't figured that I can make the printf "\a" character work in C.

There's one way to make the tone work as the program runs, start XCODE, drop down menu under XCODE, Preferences, Behaviours,check the first box PLAY SOUND, choose from the list or add a sound.

That's one way to do it, but only as the program runs, I believe.

share|improve this answer

on MacOS X, the "sound warning" option (Terminal/Preferences) has to be activated to get a sound.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.