![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Is there a limit to the no. of arguments to a shell script ? | hidnana | Shell Programming and Scripting | 4 | 03-17-2008 12:19 PM |
| Run script at same time | Jamil Qadir | Shell Programming and Scripting | 3 | 03-07-2008 03:00 PM |
| failed login time limit | zuessh | AIX | 2 | 05-24-2006 03:19 PM |
| How to limit the number of running instances of a script? | oti | Shell Programming and Scripting | 2 | 06-25-2004 04:31 PM |
| Limit login time... | vancouver_joe | UNIX for Dummies Questions & Answers | 2 | 09-03-2001 10:18 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
I need to set a time limit for a script
Hello Folks,
I have been asked to write a test script which can be run by students. the script should have a time limit. I have almost completed it except the bit of timing! I've seen something like this: Code:
on_timeout()
{
echo "$USER $score " >> theresult.txt
echo "Time out! Exit..."
exit 3
}
trap 'on_timeout' SIGALRM
#
#the test script goes here
#
#
But I do not know how to set the timer which will send SIGALRM when it goes off Any help, please Sultan |
| Bookmarks |
| Tags |
| limit, sigalrm, time, trap |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|