How to ring the system bell many times without pause?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to ring the system bell many times without pause?
# 1  
Old 10-16-2012
How to ring the system bell many times without pause?

I am writing a ksh script in cygwin though it could just as easily be bash and am trying to make an alert for myself where the bell rings many times like
Code:
print '\a'

or
Code:
echo '^G'

except I want it to ping me many times not just once. For some reason doing
Code:
print '\a\a\a\a\a\a\a\a\a\a'

or similar doesn't work and I don't want a scenario where I am doing a loop around something like
Code:
print '\a'
sleep 1'

as the pause is not wanted. Is there any easy way to do it?

Thanks.
# 2  
Old 10-16-2012
Since you want 1 line bash:
Code:
 
 for (( i=0 ; i < 100 ; i++ )); do     echo '^G'; done

# 3  
Old 10-16-2012
I already tried a loop and it didn't work. The bell rings once. In fact my loop was almost identical to yours. Googling around had me find a line like this:
Code:
cat `cygpath -W`/Media/ding.wav > /dev/dsp

But it also didn't work.
# 4  
Old 10-16-2012
Are you on Cygwin?
# 5  
Old 10-16-2012
The problem is indeed to have a proper pause.

Even without a pause the loop works: but not as you expect. Try:
Code:
for i in {1..150000}; do print '\a'; done

--
Bye
# 6  
Old 10-16-2012
Code:
while : ; do echo "^G" ; perl -e 'use Time::HiRes "usleep"; usleep 1250000;' ; done

or

Code:
while : ; do print "\a" ; perl -e 'use Time::HiRes "usleep"; usleep 1250000;' ; done

# 7  
Old 10-16-2012
Under cygwin both pdksh and bash support decimal sleep durations, try
Code:
sleep 0.25

or

Code:
sleep 0.5

Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

System call failed with 127 .. after 500 times when called in loop

Hi Experts, I have a code like this. ===== #include.... int main() { int count = 0; while(1){ printf("\n Interation number is: %d \n ",count); rv = system(" test.sh > log.txt " ); if (-1 == rv) { printf("Could not generate static log: error... (12 Replies)
Discussion started by: binnyjeshan
12 Replies

2. Solaris

System hangs (freezes) on system bell/beep

I am running OpenIndiana development version oi_148 32-bit on a seven-year-old Dell Inspiron 8600. Seems to be running fine except for one particular annoyance: It freezes whenever a system bell/beep plays. I have mitigated this by turning the system bell off in gnome-terminal, which I use... (3 Replies)
Discussion started by: DeadBadger
3 Replies

3. HP-UX

Any Way to pause/unpause system execution in HP-UX 11.11 and 11.23?

This may seem like an odd question, but I've heard that on old Alpha servers running OpenVMS, you could pause the system so that the OS is essentially suspended for a small period of time, then unpause it and it would pick up where it left off. During the pause, all CPU cycles would be halted, all... (3 Replies)
Discussion started by: deckard
3 Replies

4. UNIX for Dummies Questions & Answers

How the system determines password expiry times?

Hi, lads. Good day. I have one question, how the system determines password expiry times? Thanks in advance (1 Reply)
Discussion started by: yjck71
1 Replies

5. AIX

Urgent: Error log about TOKEN ring

Hi Everyone: Last Thursday my system come up those error log and haven't show up any details. Does anyone know what it mean? I need help :confused: 9359F226 0424184208 N U LVDD 00D2B9FE 0424183208 N U tok0 D0775966 0424182908 N U tok0 A9428A1A 0424170108 N U tok0 71B416E1 ... (0 Replies)
Discussion started by: fla22
0 Replies

6. Shell Programming and Scripting

Tar-ring a directory

Hello I am trying to tar a whole directory. My problem is that I have to omitt a special subdirectory. Can you tell my how I am supposed to do that? Unfortunately I am not very good in regular expressions and in programming. :( Thanks for any help. Greetings Marcus (1 Reply)
Discussion started by: Fwurm
1 Replies

7. Programming

system("PAUSE") Problem.....

Ok, here's the situation....I have this code... #include <iostream.h> #include <stdlib.h> int main() { cout << "\nBlah, and Blah\n\n"; system("PAUSE"); return 0; } Now, "system("PAUSE")" gets executed before "cout" does, and I have... (2 Replies)
Discussion started by: mbolthouse
2 Replies

8. UNIX for Dummies Questions & Answers

SuSE install on a Packard Bell m415

hi everybody, I just installed Suse on an old Packard Bell. When the install was at detecting my moden, it hung. I couldn't free it sooooo, I pressed ctrl+alt+backspace. Yup that killed the process alright. The machine went right down and upon reboot it is now at the KDE welcome page. Here... (2 Replies)
Discussion started by: joetech
2 Replies
Login or Register to Ask a Question