script Scheduling

mohsinsalam

Newcomer
Joined
Oct 30, 2008
Messages
1
Reaction score
0
Points
0
Hi All,
i am new in Aix enviornment, I want to schedule a script on AIX can any one let me know the steps which are involed in scheduling. Thanks in Advance

Regards
Mohsin..
 
If you want to run a script with AIX scheduler :
get in to crontab : crontab -e
35 16 * * 0,1,2,3,4 /home/yh/can_movedata 2> /dev/null 2>&1
where 35 is the min
16 is the hour
* is the day
* is the month
/home/yh/can_movedata is the script
2> /dev/null means where you want to sent your error output
1> /dev/null means where you want to sent your output
 
Back
Top