Sponsored Content
Top Forums Shell Programming and Scripting How to ring the system bell many times without pause? Post 302716695 by rdrtx1 on Tuesday 16th of October 2012 06:50:27 PM
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

 

8 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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

7. 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

8. 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
usleep(3)						     Library Functions Manual							 usleep(3)

NAME
usleep - Suspends execution for an interval of time LIBRARY
Standard C Library (libc.so, libc.a) SYNOPSIS
#include <unistd.h> int usleep( useconds_t useconds); The following function declaration does not conform to current standards and is supported only for backward compatibility: #include <unistd.h> void usleep( unsigned useconds); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: usleep(): XPG4-UNIX Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Specifies the number of microseconds to sleep. DESCRIPTION
The usleep() function suspends the current process from execution for the number of microseconds specified by the useconds parameter. Because of other activity in the system, or because of the time spent in processing the call, the actual suspension time might be longer than specified. The useconds parameter must be less than 1,000,000. If the value of useconds is 0 (zero), the usleep() function has no effect. In a multithreaded environment, the sleep() function is redefined to suspend the calling thread. RETURN VALUES
On successful completion, the usleep() function returns 0 (zero). Otherwise, it returns -1 and sets errno to indicate the error. ERRORS
The usleep() function sets errno to the specified values for the following conditions: The interval specified in the useconds parameter exceeds 1,000,000 microseconds. RELATED INFORMATION
Functions: getitimer(2), sigaction(2), sigvec(2), alarm(3), sleep(3) Standards: standards(5) delim off usleep(3)
All times are GMT -4. The time now is 11:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy