Crontab command help


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Crontab command help
# 1  
Old 07-09-2015
Crontab command help

Hi All,
I want a script to run every 5 minutes and in the command prompt i typed the following command
Code:
$ */5 * * * * /u01/EnvironmentStartup/validateservices.sh

and when i enter i'm getting a message
Code:
"-bash */5: No such file or directory"

Any ideas please?
Thanks


Moderator's Comments:
Mod Comment Please wrap all code, files, input and output/errors in CODE tags.
It makes them far easier to read and preserves multiple spaces which is important for indenting and fixed width data.

Last edited by rbatte1; 07-09-2015 at 12:21 PM.. Reason: Added CODE tags
# 2  
Old 07-09-2015
WHERE do you enter that line?
# 3  
Old 07-09-2015
In the putty emulator as i log in at the $ prompt

Last edited by rbatte1; 07-09-2015 at 12:22 PM.. Reason: ICODE tags
# 4  
Old 07-09-2015
Try
Code:
crontab -e

---------- Post updated at 16:20 ---------- Previous update was at 16:19 ----------

And, read man crontab
# 5  
Old 07-09-2015
When I did crontab -e its taking me to a different location where it is showing another previously created cron job

Last edited by rbatte1; 07-09-2015 at 12:22 PM.. Reason: Spelling and ICODE tags
# 6  
Old 07-09-2015
That's the way cron/crontab work. Again, man cron / crontab
# 7  
Old 07-09-2015
Cron job setup is cumulative. One file (per user) holds all your definitions.

To add a new job definition, add a new record to your file edited with crontab -e


I hope that this helps,
Robin
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Crontab command

Hello, Could someone help me with crontab command form on AIX? :wall: Thank you, (6 Replies)
Discussion started by: rimob
6 Replies

2. HP-UX

rcp command is not working in crontab

Dear Friends, I am trying to copy SAP log file from one HPux server1 to another HPux server2 remotely through one script. following command has written in the script. rcp -rp /oracle/PRD/sapreorg/*.dbf oraprd@drsite:/oracle/PRD/sapreorg Above command working fine from command mode.... (5 Replies)
Discussion started by: BPANDEY
5 Replies

3. Shell Programming and Scripting

date command issue from crontab

Hi Expert, I am using TZ for extracting yesterday date and day before yesterday date example : date_yes=`TZ="GMT+28" date +'%d-%b-%Y'` date_dbyes=`TZ="GMT+48" date +'%d-%b-%Y'` echo $date_yes $date_dbyes 26-May-2010 27-May-2010 I have written a small script for the same named... (1 Reply)
Discussion started by: pritish.sas
1 Replies

4. Shell Programming and Scripting

date command issue from crontab

Hello Experts, I am facing problem in date command with TZ test.sh Output : 26-May-2010 27-May-2010 I scheduled this script everyday at 1 a.m 00 01 * * * sh test.sh when i was called this script test.sh from crontab , it was giving me other output (1 Reply)
Discussion started by: pritish.sas
1 Replies

5. Shell Programming and Scripting

crontab doesn't allow `command` ??

Dear All, We wrote a script to clean email mailbox when they're nearly full and put it in cron : 0 0 * * * /root/quota/autoclean.sh > /root/quota/autoclean.`date '+%Y%m%d'` 2>&1 I've run this command from command prompt, it did work. However, if running from cron, it returned such error... (1 Reply)
Discussion started by: tiger2000
1 Replies

6. Shell Programming and Scripting

command faster in crontab..

Hi all you enlightened unix people, I've been trying to execute a perl script that contains the following line within backticks: `grep -f patternfile.txt otherfile.txt`;It takes normally 2 minutes to execute this command from the bash shell by hand. I noticed that when i run this command... (2 Replies)
Discussion started by: silverlocket
2 Replies

7. Shell Programming and Scripting

crontab + exec command

hi I am trying to activate auto_run.sh from crontab using following command line but nothing happen. 35 11 * * * -exec /u/uniacc/auto_run.sh and this is the first line of auto_run.sh ksh exec auto_inv.4ge > kti (4 Replies)
Discussion started by: naushad
4 Replies

8. UNIX for Dummies Questions & Answers

getting the date in crontab command

Hi All, There is a requirement to create a file everyday using the cronjob with the date as its name. any suggestions for the crontab command that'll serve this purpose? e.g. 02 30 * * * touch abcd.`date +%d.%m.%y` needless to say.. this doesn't work.. looking fwd to lots of... (7 Replies)
Discussion started by: pranavagarwal
7 Replies

9. UNIX for Advanced & Expert Users

crontab command not working

Dear Friends, I have tried to fire a job on daily basis through crontab command but it willn't work. i have given in the following manner: 07 19 * * * exp /user_name/passwd/ file = /path/file-name full = N owner = user-name but it is giving error that permission denied. i have checked that... (8 Replies)
Discussion started by: digant
8 Replies

10. UNIX for Dummies Questions & Answers

Having Problem with crontab command

Hi all , When i am tryting to execute crontab from home directory for a shell script which is located in some directory it is giving a error message The crontab file is 0 9-17 * * 1-5 /mydir/myshell The following output is given Your "cron" job /mydir/myshell produced the following... (1 Reply)
Discussion started by: arunava_maity
1 Replies
Login or Register to Ask a Question