A running Script giving error while scheduled in cronjob


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting A running Script giving error while scheduled in cronjob
# 1  
Old 01-11-2010
A running Script giving error while scheduled in cronjob

Hi,

I have script which is properly running but when i schedule it in cron it throws an error like :
Code:
Your "cron" job on retrprdapp1
/usr/bin/sh /retr/cron/ftp.sh 2>&1
produced the following output:
/retr/cron/ftp.sh: syntax error at line 17: `(' unexpected

line17 is
Code:
# Get list of files
set -A file_list $(ls -tr1 $sPath/CALL*)

Please help me.

Regards
Raj

Last edited by vbe; 01-11-2010 at 12:59 PM..
# 2  
Old 01-11-2010
Whats your default or user shell?
# 3  
Old 01-11-2010
Its /usr/bin/sh.
# 4  
Old 01-11-2010
I should have started by asking what OS since the OS I am most aware of (HP-UX) says:
Quote:
set [--aefhkntuvx [arg ...]]
set sets or unsets options, and resets the values
of the positional parameters to the args given, if
any. The option list is terminated by the first
argument that does not begin with - or +, or upon
encountering an argument consisting entirely of -
-. Recognized options are:
And so, no -A...

Last edited by vbe; 01-11-2010 at 01:02 PM.. Reason: quote tags
# 5  
Old 01-12-2010
Thank vbe

---------- Post updated at 03:03 AM ---------- Previous update was at 03:00 AM ----------

It worked with ksh but again i got i problem. The ftp script i written was running and it properly transfers the files if i run it directly. But from cron, it throws this error.
Code:
+ echo put CALL_DETAIL_EXCEPTION_20100111.csv
+ 1>> /export/home/retr/.netrc
+ echo bye
+ 1>> /export/home/retr/.netrc
+ echo
+ 1>> /export/home/retr/.netrc
+ chmod 600 /export/home/retr/.netrc
+ ftp -v -i 41.206.160.83
Connected to 41.206.160.83.
220 ftp-rev FTP server ready.
331 Password required for abhishek.
230 User abhishek logged in.
hash
Hash mark printing on (8192 bytes/hash mark).
binary
200 Type set to I.
cd /WBU/dump/Daily/201001
250 CWD command successful.
CALL_DETAIL_EXCEPTION_20100111.csv: No such file or directory
put CALL_DETAIL_EXCEPTION_20100111.csv
bye
221-You have transferred 0 bytes in 0 files.

where as my file CALL_DETAIL_EXCEPTION_20100111.csv is present at the current directory i run ftp from but still error
CALL_DETAIL_EXCEPTION_20100111.csv: No such file or directory
happens.


Kindly help me out.

Regards,
Rajalaxmi

Last edited by pludi; 01-12-2010 at 04:08 AM.. Reason: code tags, please...
# 6  
Old 01-12-2010
try this....

# Get list of files
set -A file_list $(`ls -tr1 $sPath/CALL*`)
# 7  
Old 01-12-2010
Try using the absolute path for the CSV file. Don't forget that cron runs in a very limited environment & may not use the same working directory that you'd expect.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Script gives error when scheduled in crontab

i have written one script which is working fine when i run it manually but giving error when i schedule it in crontab. cat SUMMARY.sh #!/bin/bash DT1=`date +%Y%m%d` echo "Off PP TT" >>summary_$DT1.txt cat ues1.txt_$DT1 >>summary_$DT1.txt cat ues2.txt_$DT1... (2 Replies)
Discussion started by: scriptor
2 Replies

2. Shell Programming and Scripting

Expect script cronjob running but dying prematurely

I have an Ubuntu machine that I'd like to update automatically. I've written an expect script to run the aptitude package manager and update my packages. Essentially it does: aptitude update && aptitude upgrade while answering "yes" at the appropriate time. It works quite nicely when run... (4 Replies)
Discussion started by: CluelessPerson
4 Replies

3. UNIX for Dummies Questions & Answers

Script not running through Cronjob

Hi, I have a .ksh script which updates the database. The script is running fine manually but it is not running through cron.All the file permissions are fine. The script contents are as below: #!/usr/bin/ksh ddate=`date +%Y%m%d` echo $ddate nohup sqlplus crm/crm @db_state_sync.sql >>... (3 Replies)
Discussion started by: shivangi
3 Replies

4. UNIX for Dummies Questions & Answers

how to cancel a cronjob if the cronjob still running

hi everyone I'm newbie in this forum hope I can get some help here :) I have a command in crontab that executed every 1 minute sometime this command need more than 1 minute to finish the problem is, the crontab execute this command although it's not finish processing yet and causing the system... (7 Replies)
Discussion started by: 2j4h
7 Replies

5. UNIX for Dummies Questions & Answers

Cronjob for running a php script intermittently?

Hey all Found this forum googling for solutions. Great community this! Im looking for help trying to run a php script every 20 minutes. The script basically has to loop continuously forever but inexplicably hangs every 30 minutes or so. I have not been able to debug the script and find... (2 Replies)
Discussion started by: aras
2 Replies

6. Shell Programming and Scripting

Problems in running a Perl script via cronjob

I have a very basic perl script that attempts to find if a process is running. If the process is not running then the script is supposed to start the process. If I execute the script from command line it works fine as expected. However if the script is executed via cronjob, the script cannot find... (1 Reply)
Discussion started by: ypant
1 Replies

7. Shell Programming and Scripting

Running script that sends an html formatted email fails when its run as cronjob

Hi Im very new at working with unix and this problem I simply can not understand. I know there are a lot of threads about problems with shell scripts behaving differently when run from a terminal and from a cronjob. I have tried everything(almost) but I still havent cracked this problem. Im... (15 Replies)
Discussion started by: Nightowl
15 Replies

8. Shell Programming and Scripting

Cron job giving error while running SSH command

Hi All, The script which i am using to SSH to remote server is working fine when i run is using ./ but when cron runs it it gives error that "ssh: not found" please help!!! (3 Replies)
Discussion started by: visingha
3 Replies

9. Shell Programming and Scripting

Shell script not running thru Cronjob

Hi I have a shell script, it run ok if executed from the path it is located at but doesnot run when the same is tried through cron-job. can someone help me please. regards gaurav shrinivas Email address removed (8 Replies)
Discussion started by: gauravshrinivas
8 Replies

10. Shell Programming and Scripting

Variables are not getting exported while running the script in cronjob

Hi All Some how, variables are not getting exported while running the script in cronjob. Variable value is coming blank. But the variables are geting the value when the same script I am running manually. Any idea why? When running the script in cron-job ==================================... (7 Replies)
Discussion started by: csaha
7 Replies
Login or Register to Ask a Question