![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
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 |
| Estimated execution time | Sreejith_VK | Shell Programming and Scripting | 4 | 04-16-2008 09:23 AM |
| specifying an execution time | VGR | UNIX for Advanced & Expert Users | 7 | 03-19-2008 05:32 AM |
| last execution time | cubs0729 | UNIX for Dummies Questions & Answers | 1 | 01-20-2006 08:45 PM |
| Reduce boot-time delay on FreeBSD? | DownSouthMoe | BSD | 1 | 03-28-2004 03:07 AM |
| execution time | ramki_rk | High Level Programming | 2 | 08-27-2003 09:23 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
To reduce execution time
Hi All,
The below script I run daily and it consumes 2 hours approx. In this I am calling another script and executing the same twice. Is the loop below the cause for the slow process?Is it possible to finetune the program so that it runs in a much faster way? The first script: Code:
#!/bin/ksh for file in 1 2 do echo "Started on `date`" | tee -a secondscript.log secondscript.sh 2>&1| tee -a secondscript.log echo "Ended on `date`" | tee -a secondscript.log done Last edited by Sreejith_VK; 05-13-2008 at 12:05 AM.. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|