|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | 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. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Timing a script
i have a very big script i have that i'd like to add a timeout to. this script runs on a several remote host. i update this script with timeout clause and then copy it over to all the hosts on which it is currently on. basically, i want the timeout to make the script abort/exit if it's running time is beyond a predeffined time. this is a script written in bash. i'm hoping something like this is possible. Code:
#!/bin/bash
timeout 60seconds () {
.......
........
.........
........
.........
.......
.......
}
if [ timeout -ge 60 ]
exit
fi |
| Sponsored Links | ||
|
|
#2
|
|||
|
|||
|
Using a recent Korn shell, the following seems to do what you want: Code:
#!/bin/ksh st=$SECONDS ... ... ... if (( SECONDS - st > 60 )) then exit fi |
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Challenging task : script for mailing process completion timing report to users. | ammbhhar | Shell Programming and Scripting | 0 | 12-02-2010 12:46 AM |
| Timing out lynx request in a bash script | lowmaster | Shell Programming and Scripting | 1 | 05-21-2009 11:19 AM |
| timing your functions | bebop1111116 | Programming | 3 | 11-01-2006 03:19 PM |
| Timing out a SSH | rcunn87 | Shell Programming and Scripting | 9 | 07-31-2006 05:11 PM |
| HTML display timing problem under ksh script | Nicol | Shell Programming and Scripting | 1 | 10-28-2003 01:51 PM |
|
|