Schedule without cron


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Schedule without cron
# 1  
Old 06-18-2010
Schedule without cron

Hi,

How to write the recursive function.

I have a script,
Code:
#!/usr/bin/ksh
##
name=$1
outputfile='output.log'
sqlplus -s > ${outputfile} <<__END__
${USER}/${PASS}@${DB}
WHENEVER SQLERROR EXIT SQL.SQLCODE ROLLBACK
WHENEVER OSERROR EXIT FAILURE ROLLBACK
SET ECHO ON
SET SERVEROUTPUT ON SIZE 1000000
select count(*)  FROM table WHERE date = '$curdate'  and name='$name';
EXIT
__END__

exec >> $logfile 2>&1
echo "HI" > $logfile
/bin/mail -s "$SUBJECT" "$EMAIL" < $logfile


I have to run the script at 1,2,6,7 AM everyday without using crontab.
How to use the sleep command at regular intervals and runs it everyday and specific time

./abc.sh ABC should run at 1.10 AM

./abc.sh DEF should run at 2.30 AM

./abc.sh EFG should run at 6.10 AM

./abc.sh HJI should run at 7.22 AM

---------- Post updated at 01:10 AM ---------- Previous update was at 12:54 AM ----------

I am writing this in a separate shell script wrapper.sh
How to make the script till 1.10AM and how to add the condition like this

[Sleep till 1.10 AM and execute]
./abc.sh ABC should run at 1.10 AM
sleep 1 hour 20 min
./abc.sh DEF should run at 2.30 AM
sleep another 3 hours,40 min
./abc.sh EFG should run at 6.10 AM
sleep for 1 hour 12 min
./abc.sh HJI should run at 7.22 AM
sleep for 17hours
# 2  
Old 06-18-2010
Hi

Check this geekstuff link usage of 'at' command: at atq commands (link removed)


Guru.
# 3  
Old 06-18-2010
at -f ./abc.sh ABC now + 1 min
syntax error. Last token seen: A

In the script, I used the command with paramerter. ABC is the argument.
# 4  
Old 06-18-2010
i can write a script for every day but this must be always working in background and is not never like crontab daemon..
according to me you may be use cron

for at command may be use this in your script add last line in your script

let try like this
Code:
 
wtime="13:10" #pm
parameter=ABC
script="./a.sh"
at now + 1 min <<<"$script ABC"


Last edited by ygemici; 06-18-2010 at 08:46 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Cron job is not running on schedule

Scheduled job is not running on time.but it is running when executing same command manually. 25 10 * * * /code/bin/ACCOUNT.ksh 1 >/dev/null 2 >&1 Manually executing the same Ksh -x /code/bin/ACCOUNT.ksh 1 >/dev/null 2 >&1 Followed steps Crontab -e Added the job to cron tab. (4 Replies)
Discussion started by: Myguest
4 Replies

2. HP-UX

Help with cron schedule

Hope you can help with a queuy i have. Server OS is HP-UX my cron runs like this: * * * * * /test/scripts/1_min_jobs.sh 1>/dev/null 2>/dev/null 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /test/scripts/jobs_5mins.sh 1>/dev/null 2>/dev/null 0,15,30,45 * * * *... (10 Replies)
Discussion started by: davexxash
10 Replies

3. Shell Programming and Scripting

schedule a job without Cron

Hi All, Is there any way (any utility) to schedule a job to run once in a week on RedHat Linux ? Note- Do not using Crontab. Thanks Pravin (1 Reply)
Discussion started by: pravin27
1 Replies

4. UNIX for Dummies Questions & Answers

Schedule a cron job

Hi, Can anyone help me out with scheduling a cron job for the below: i wnated to delete file from a folder on every sunday at 05:00 AM this is code i have used. ******************************************************* 0 05 * * 0 find /abc/xyz/pqrs/bak/ -type f -mtime +30 -exec rm -f... (5 Replies)
Discussion started by: ch33ry
5 Replies

5. Shell Programming and Scripting

Schedule a Cron job

Hi all, I am new to cron jobs.. i wanted to schedule a cron job that wil send a mail to me at 3:00PM on 10th August ie is on Wednesday. 0 15 10 8 3 echo "message from UNIX here"|mail -s "your subject here" user@user.com However this was not executed... Can anyone please... (0 Replies)
Discussion started by: ch33ry
0 Replies

6. Solaris

Prstat Cron Schedule

Hi , I am trying to set up a cron job for getting the prstats for every 10 minutes to a log file. prstat -s cpu -n 20 > a.txt The issue is when i try to execute this command, a.txt is filling up with data for every second which is not i wanted.I just need top 20 processes for every 10... (2 Replies)
Discussion started by: pyaranoid
2 Replies

7. UNIX for Dummies Questions & Answers

Cron schedule for ever other week

I have cron scheduing that after hotbackup omniback kicks in and back up tape. 00 17 * * * /usr/local/bin/archbakPRD/mainPRDbackup.sh > /usr/local/bin/archbakPRD/dbfcopy.log 2 >&1 above cron can fired every night at 5PM but omnibackup need to have seperate name for each backup ( i.e:... (1 Reply)
Discussion started by: Paul.S
1 Replies

8. Shell Programming and Scripting

unable to schedule in cron

the follwing script is running fine , when run from the ksh shell...it runs properly i.e. waits for a file "test.flag" and sends mail accordingly. But when I schedule it in the crontab ...it does not run at the specified time (it never runs). I am using ksh ####shell script starts count=1... (4 Replies)
Discussion started by: ace@123
4 Replies

9. UNIX for Dummies Questions & Answers

schedule many jobs using cron

HI, I need to schedule a no.of jobs using the cron facility. I currently do two kinds of scheduling,one based on the database load(after the database is loaded the program will start) and the other is based on time.....(say 10.00a.m daily) the problem is.......... When the database is loaded... (1 Reply)
Discussion started by: sireesha15
1 Replies
Login or Register to Ask a Question