![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | 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 here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| origo-submit 0.1.1 (Default branch) | iBot | Software Releases - RSS News | 0 | 05-17-2008 04:50 PM |
| cant submit anything | congo | Forum Support Area for Unregistered Users & Account Problems | 1 | 10-21-2006 11:59 AM |
| How to submit cron jobs? | siegfried | Shell Programming and Scripting | 4 | 04-21-2006 10:52 AM |
| submit a ksh script in background | captainzeb | Shell Programming and Scripting | 4 | 11-08-2003 07:49 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Cannot submit a background job
Hi all,
I am currently facing a problem when i am submitting a script to run in the background to collect statistics round the clock on an AIX box. I don't have root authority nor can I set it in cron. So when i submit the job, it runs fine, but won't let me signoff. It prompts me that "there are jobs running " and as soon as I signoff, the background job stops. The simple script to collect filesystem utilisation over the last 24 hours is as follows: #!/bin/ksh rm fs24.out export FS_CNT=1 while [ $FS_CNT -lt 25 ] do echo `date` | tee -a fs24.out df -g | tee -a fs24.out FS_CNT=` expr $FS_CNT + 1 ` sleep 3600 done Any suggestion please. Thanks |
| Forum Sponsor | ||
|
|