Re: Beep in perl

2005-07-20 Thread dave.w.turner
If on linux, and portability doesn't matter, you can get a beep wav file, and use: system "aplay beep.wav"; otherwise, I use the print "\a"; Doesn't always work in all terminals/ssh/telnet though. (but more portable that aplay anyway) BTW, ARGGHHH!!! Revenge of the single posts. On 7/20/05,

Re: Beep in perl

2005-07-20 Thread Bryan R Harris
Try this: perl -e 'print "\a";' - B > Hi, > I need to produce a beep using perl. > Any help is highly appreciated.. > Thanks.. > Regards, > Eliyah > -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Beep in perl

2005-07-20 Thread Charles K. Clarkson
Eliyah Kilada wrote: : I need to produce a beep using perl. If the output doesn't matter, you could use the ASCII bell character. print chr 7; HTH, Charles K. Clarkson -- Mobile Homes Specialist 254 968-8328 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For a