Crontab setting error


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Crontab setting error
# 1  
Old 08-30-2011
Crontab setting error

Hi All,

I have created crontab using following steps-

1) crontab -e

(edited the file with) 0 10 * * 1-5 /home/user01/exercise/cron.sh

2) then saved this file with :wq

3) cron.sh contains the code-

#!/bin/bash
DAY=`date +%a`
mkdir abc_${DAY}

4) done the execut permision for this file using-
chmod 777 cron.sh


I have checked this code from 2 days , its not going to create an directory for todays day, plase help me to solve this issue.I need to apply same concept in the project.How to do an an crontab setting , is there any mistake in above code?


Thanks in advance...
# 2  
Old 08-30-2011
Most probably - script is trying to make directory somewhere, where it has no permissions to do that.
Try adding
Code:
cd /home/user01/exercise

before mkdir.
And change, just for test, cron time to
Code:
*/5 * * * *

, so You don't have to wait whole day to see if its working Smilie
This User Gave Thanks to sulti For This Post:
# 3  
Old 08-30-2011
but my problm is why it is not creating the directory , I have also tried which u have posted here. but its not giving me an output

---------- Post updated at 12:37 PM ---------- Previous update was at 12:30 PM ----------

Hey thanks its working now

need to add
cd /home/user01/exercise

Thanks a lot
# 4  
Old 08-30-2011
this is working for me .. try this ..
Code:
#!/bin/bash
mkdir /your/home/path/testing_`date +%a`

Sample Cron entry..
Code:
13 * * * * sh /your/home/path/cron.sh 2>&1

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Linux

Setting Up Google 2F Authentication for Automated (Crontab) rsync

Dear All, I have Google Two Factor (2F) Authentication enabled for sshd on most of my Linux servers. This works well and I highly recommend it. My question is: Has anyone set this up for rsync which runs in a crontab? For example, supposed we have this simple crontab script: ... (5 Replies)
Discussion started by: Neo
5 Replies

2. Shell Programming and Scripting

Crontab setting

Hi All, Can anyone tell me how to schedule the dbshell.sh script to run on sunday. I have scheduled as 1 19 7 * * /home/svr/dbshell.sh. kindly confirm confirm whether coded "7" or it should set to '0'. unix:$ crontab -l 0 19 6 * * /home/svr/dbemail.sh 1 19 7 * * /home/svr/dbshell.sh (2 Replies)
Discussion started by: arun888
2 Replies

3. UNIX for Dummies Questions & Answers

Crontab setting

Hi Team, Please help me to set one script in crontab. I have one script and inside script, its creating one log file for saving ouptut of script. i have to out that script in crontab. When i put the script in cronatab, it executed and log file created but no data in log. like this i put in... (3 Replies)
Discussion started by: shivshankar
3 Replies

4. Solaris

Crontab date setting problem

Hi, i wanted to schedule a backup script to run on 7.30pm every 1st Sat of month MAR, APR, SEP, OCT. Am i understanding it correctly? Because it doesn't seem to run according to the schedule i needed. = (7.30pm) & (1st to 7th day of the month) & (MAR, APR, SEP, OCT) & (Sat) 30 19 1-7... (1 Reply)
Discussion started by: beginningDBA
1 Replies

5. Solaris

Crontab date setting problem

Hi, 0 9 1,2,3,4,5,6,7 3,4 6 I want a cronjob to run on every 1st Sat of Mar & Apr. But the above schedule is running is running on the 1st 7 days. How do i rectify it? Thanks in advance. (2 Replies)
Discussion started by: beginningDBA
2 Replies

6. Ubuntu

Error in setting up install server

I am trying to setup a install server for solaris network installtion. install server os is ubuntu. find the error when setup_install_server script is run root@adroit:/mnt/share/solaris/Solaris_10/Tools# ./setup_install_server /home/hitendra/install_path/ ./setup_install_server: 414:... (1 Reply)
Discussion started by: hiten.r.chauhan
1 Replies

7. Linux

Setting up crontab, still cant get it to work

OK I have been working on this simple action for a while and I cannot get it to work. First off im new to the linux command line world. I feel like I am missing something simple. What I am trying to achieve is that I want this command: tcpdump -s2000 -w'flowroute-%H%M.pcap' -G900 -W36 &to... (13 Replies)
Discussion started by: Nasasdge
13 Replies

8. Shell Programming and Scripting

tsch, error setting a variable

Hi, my code is: ------------------------------ set r=`ls -L $source_dir/*.snvf` echo AAA ------------------------------ If does file does not exists I got on the screen ls: No match. AAA How can I remove the "ls: No match." from being printed out Regards, Ziv (2 Replies)
Discussion started by: zivsegal
2 Replies

9. AIX

Error in setting up Pro*C on AIX 5.3

Error Code: ld: 0711-317 ERROR: Undefined symbol: .main Various Library Paths set to same: LIB_PATH=/usr/lib:/usr/vac/lib:/oracle/product/10.2.0/lib32:/oracle/product/10.2.0/lib LIBPATH=/usr/lib:/usr/vac/lib:/oracle/product/10.2.0/lib32:/oracle/product/10.2.0/lib ... (0 Replies)
Discussion started by: longojos
0 Replies

10. Shell Programming and Scripting

Setting crontab

Hey all, I would like to know how to set a cron job to run from 8:15 am to 4:00 pm? Or do I have to do this in 2 seperates cron? Thanks! (4 Replies)
Discussion started by: mpang_
4 Replies
Login or Register to Ask a Question