sleep problem


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting sleep problem
# 1  
Old 05-27-2005
sleep problem

hi all

i have a menu (solaris unix), and every option calls a fuction. example:

Menu_Principal

while [ 1 ]
do

case $Opcion_UnCaracter in

A) Ayuda;;
a) Ayuda;;

C) Configuracion;;
c) Configuracion;;

bla,bla,bla....

esac
Menu_Principal
done

the problem is what when i call a function from the principal screen, doesn`t works, but, if i put to the function in the last instruction a "sleep command" (example : sleep 10), then it works OK.
anybody knows why? do i keep the sleep forever, or is there any solution for this?
# 2  
Old 05-28-2005
please post the complete code block in question ... not enough information posted to guess ...

... btw, you can also use this one to shorten your code a bit ...
Code:
 case $Opcion_UnCaracter in

A|a) Ayuda;;

esac

# 3  
Old 06-01-2005
I seem recall similar weird thing a long time ago.... Carefully check the script code file. In my past experience, it was caused by invisible/unprintable characters in script file. Or end of line is incorrect. vi does not help much. od/xd is the tool.

Good luck,

Tom
# 4  
Old 06-01-2005
Quote:
Originally Posted by tom_xx_hu@yahoo
Or end of line is incorrect. vi does not help much. od/xd is the tool.
vi is perfect: issue "set list" at the colon-prompt

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sleep while i > 0

Hi, I have a script that runs a process at the beginning and I want to sleep/wait until this process is finished and then continue with the rest of the script. I am trying with this, but it is not working: process=`ps -ef | grep "proc_p01 -c" | grep -v grep | wc -l` if ; do sleep 10 done... (7 Replies)
Discussion started by: apenkov
7 Replies

2. Shell Programming and Scripting

problem with sleep cmd in execution of cron...

I am scheduling a task at regular intervals at seconds acuracy using crond and sleep command . my data in crontab file is as below:- the above line is working fine when we are creating this crontab file before 00:05 min . But when we are creating the crontab file at 00:05min , unable to... (10 Replies)
Discussion started by: manoj424
10 Replies

3. Shell Programming and Scripting

Wrapping 'sleep' with my 'resleep' function (Resettable sleep)

This is a very crude attempt in Bash at something that I needed but didn't seem to find in the 'sleep' command. However, I would like to be able to do it without the need for the temp file. Please go easy on me if this is already possible in some other way: How many times have you used the... (5 Replies)
Discussion started by: deckard
5 Replies

4. Solaris

weird problem - terminal not refreshing; sleep not terminating

Hi, I am having a wierd problem in one of the Solaris server. root@ussd # uname -a SunOS ussd 5.8 Generic_108528-24 sun4u sparc SUNW,Sun-Fire-280R The problem is that terminal is not refreshing when we run commands like prstat, tail -f "some log file", sar -u 1 10 Also, sleep... (3 Replies)
Discussion started by: vikas027
3 Replies

5. Programming

problem with sleep command

Hi all, I have a following code,(linux) #include<stdio.h> #include<unistd.h> int main() { printf("start"); sleep(3); printf("stop"); return 0; } i am getting output as first delay startstop (5 Replies)
Discussion started by: shashi
5 Replies

6. Shell Programming and Scripting

problem using sleep command

hi all im trying to : while true do command sleep 1000 done the problem is that after the 24:00 hour the script stop any idea :) (7 Replies)
Discussion started by: lione.heart
7 Replies

7. UNIX for Dummies Questions & Answers

Sleep less than 1 second

Does anyone know a way to sleep less than 1 second? Sometimes when I write scripts that iterates a loop many times it would be nice to slow things down, but sometimes 1 second is too much. (9 Replies)
Discussion started by: bjorno
9 Replies

8. Shell Programming and Scripting

Sleep under one second

If I want a script to sleep for less than a second, would I use a decimal? In other words, if I wanted my script to sleep for 1/4 of a second, would I say, SLEEP .25 ?? (5 Replies)
Discussion started by: Scoogie
5 Replies

9. UNIX for Dummies Questions & Answers

sleep

what is the purpose of the sleep command? (5 Replies)
Discussion started by: Anna
5 Replies
Login or Register to Ask a Question