Project Home
Project Home
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - 6.6.0 disabling beep: (3 Items)
   
6.6.0 disabling beep  
Hi,

We use the following instruction in a shell to disable beeping on console:

printf "%c[=1;1;B" 0x1b >/dev/con1

But with 6.6 we see on console 1:

0[=1;1;


Re: 6.6.0 disabling beep  
printf '\033[=1;1;B'

On Mon, Mar 10, 2014 at 01:51:52PM -0400, Mario Charest wrote:
> Hi,
> 
> We use the following instruction in a shell to disable beeping on console:
> 
> printf "%c[=1;1;B" 0x1b >/dev/con1
> 
> But with 6.6 we see on console 1:
> 
> 0[=1;1;
> 
> 
> 
> 
> 
> 
> _______________________________________________
> 
> OSTech
> http://community.qnx.com/sf/go/post109313
> To cancel your subscription to this discussion, please e-mail ostech-core_os-unsubscribe@community.qnx.com
Re: 6.6.0 disabling beep  
Thanks!