Sponsored Content
Top Forums Shell Programming and Scripting script syntax error: unexpected end of file Post 302340906 by Lenora2009 on Tuesday 4th of August 2009 04:10:07 PM
Old 08-04-2009
Thank you. Here is the code

Code:
 
#!/bin/bash
# ## set messages, variables 
##################################################################################
DATE=`date +%Y%m%d`
TIME=`date +%H%M%S` 
MESSAGE1="BACKUP: OK"
MESSAGE2="BACKUP: Fail"
MESSAGE3="DELETE: OK"
MESSAGE4="DELETE: Fail"
SUM=0
set -x
#################################################################################
# ## Read paramlist.txt and look for files to be trasferred 
##################################################################################
file='/name1/name2/paramlist.txt'
while read line
do
# 
key=`echo $line | awk -F\| '{ print $1 }'`
ip=`echo $line | awk -F\| '{ print $2 }'`
fuser=`echo $line | awk -F\| '{ print $3 }'`
ftppass=`echo $line | awk -F\| '{ print $4 }'`
lpath=`echo $line | awk -F\| '{ print $5 $6 $7 $8 $9 }'`
fpath=`echo $line | awk -F\| '{ print $10 $11 $12 $13 $14}'`
subject=`echo $line | awk -F\| '{ print $15 }'`
email=`echo $line | awk -F\| '{ print $16 }'` 
#
echo "step1-$key"
#################################################################################
# ## Create log for each folder (/name1/name2/) 
# ## xrf$key$(date '+%y%m%d'.%H%M%S).log - xrfba11090729.101010.log 
# ## error code > 0 mean problem of find, no files in the folder
##################################################################################
LOGFILE="xrf$key$(date '+%y%m%d').log"
mFile="$lpath*txt"
find $mFile >> $LOGFILE 
if [ $? -gt 0 ]; 
then 
file_ctr=0
else 
file_ctr=`egrep -cv '#|^$' /name1/name2/$LOGFILE` 
fi
SUM=$(echo "$SUM + $file_ctr"|bc)
echo "total files:$SUM"
#
if [ $SUM -eq 0 ]; then
mailx -s "no FTP &subject" "$email" 
else
echo "step2-ftp"
#################################################################################
# Upload to ftp; Create ftp log and trasfer log (/name1/name2/) 
# ftp$(date '+%y%m%d'.%H%M%S).log - ftp1090729.101010.log
# DIRS # Name of source directory
# FILENAME # Name of file without directory
#################################################################################
vFTPName="ftp$key$(date '+%y%m%d').log" 
cat $LOGFILE | while IFS= read line
do
DIRS=${line%/*}
FILENAME=${line#$DIRS/}
ftp -v -n $ip >>/name1/name2/$vFTPName <<EOF 
quote user $fuser
quote pass $ftppass
lcd ${DIRS}
cd $fpath
bin 
put ${FILENAME} 
bye
EOF
done 
fi
#
echo "step3-logs"
############################################## ###################################
# Check for (226 Transfer completed)
#################################################################################
ftp_ctr=`cat /name1/name2/$vFTPName | grep 226 | wc -l` 
if [ "$ftp_ctr" = "$SUM" ]; 
then
echo "No Error"
mailx -s "$subject" "$email" < "$LOGFILE"
else
echo "Error has occured"
mailx -s "FTP failure $subject" "email@name.com" < "$LOGFILE"
exit
fi 
#
SUM=0
done </impact/conv/paramlist.txt 
#


Last edited by Lenora2009; 08-11-2009 at 08:18 PM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

syntax error: unexpected end of file

Hi, I need ur help is this matter, i have th ebelow script, and i keep getting this error: syntax error: unexpected end of file affectedRow=`cat dbOutput.log | grep "1 row affected"` echo "affectedRow : $affectedRow" if ; then echo "Look to the next OMCDB" ... (10 Replies)
Discussion started by: Alaeddin
10 Replies

2. Shell Programming and Scripting

Help on shell script : syntax error at line 62: `end of file' unexpected

Hi All, I have written a korn script (code pasted below). It is giving the error while debugging "new.sh: syntax error at line 62: `end of file' unexpected". I have re-written the whole code in VI and explored all help related to this error on this Unix forum and tried it. Somehow, I could... (7 Replies)
Discussion started by: schandrakar1
7 Replies

3. Shell Programming and Scripting

syntax error: unexpected end of file

I have a script that's failing ./zzmaster.sh: line 2: syntax error: unexpected end of file There are 4 scripts total involved. The first 'znocc0.sh' essentially curls a page then does some sed sequences... #!/bin/sh #GET SENTINAL INFO curl -b z0cookie.txt -L -k -e... (2 Replies)
Discussion started by: phpfreak
2 Replies

4. Shell Programming and Scripting

syntax error: unexpected end of file

Hi, I have problem in constructing "IF" condition. The below code throws "tst.sh: line 10: syntax error: unexpected end of file" #!/bin/ksh test=9 echo $test if ] then echo "in" fi echo "end" exit 0 Actually, i want to check whether the variable $test is empty or null. ... (5 Replies)
Discussion started by: tinku
5 Replies

5. Shell Programming and Scripting

syntax error: unexpected end of file

Hi, I am newbie to UNIX scripting. I am facing this error "syntax error: unexpected end of file" while executing the following script: ------ a=$1 if then sqlplus -s prospect_stg/prospect_stg@mdmpt <<END insert into bckup_marc_parameter_lookup select * from... (6 Replies)
Discussion started by: boopathyvasagam
6 Replies

6. Shell Programming and Scripting

syntax error: unexpected end of file

I will appreciate help is this matter. i am getting this error (./getwind.scr: line 41: syntax error: unexpected end of file) in the following script : ############################## #QSUB -eo -q sb -lT 1200 -s /bin/csh #Run on an HP-UX machine or norway to access ncks # lat and lon are in... (0 Replies)
Discussion started by: peeriich
0 Replies

7. Shell Programming and Scripting

syntax error unexpected end of file

I am new to unix, so thank u for ur patience I try to make it work (to duplicate two first columns in several files): #!/bin/bash for i in `seq 2 5` do awk `{ print $1,$1,$2,$2,$3,$4}` final_chr.${i} > input_${i} done and i get ./my_script3.sh: command substitution: line 5: syntax... (2 Replies)
Discussion started by: kush
2 Replies

8. Shell Programming and Scripting

Cannot execute/finish script because of last line syntax error: unexpected end of file/token `done'

first of all I thought the argument DONE is necessary for all scripts that have or begin with do statements which I have on my script, However, I still don't completely understand why I am receiving an error I tried adding another done argument statement but didn't do any good. I appreciate... (3 Replies)
Discussion started by: wolf@=NK
3 Replies

9. Shell Programming and Scripting

Syntax error `end of file' unexpected

I checked the forum and internet, tried different workaorunds but it didnt fixed the error. Please advise on the code. #!/bin/sh CWD=/home/test/Bench cd $CWD (grep "`date +%d-%b"`" File.txt) > /home/test/Bench/dateout if then echo “data” > /home/test/ Bench /test else echo "File... (16 Replies)
Discussion started by: rajjev_saini123
16 Replies

10. Shell Programming and Scripting

Unexpected End of File Syntax Error

Hi, I am brand new to this so I apologize ahead of time for any formatting problems. I know there is a previous (closed) thread on here about this problem but I wasn't able to fix the error following the posts there so I thought I could create a new one. Here is the error I am getting: ... (3 Replies)
Discussion started by: SierraG
3 Replies
DATETIME.SETDATE(3)							 1						       DATETIME.SETDATE(3)

DateTime::setDate - Sets the date

       Object oriented style

SYNOPSIS
public DateTime DateTime::setDate (int $year, int $month, int $day) DESCRIPTION
Procedural style DateTime date_date_set (DateTime $object, int $year, int $month, int $day) Resets the current date of the DateTime object to a different date. PARAMETERS
o $object -Procedural style only: A DateTime object returned by date_create(3). The function modifies this object. o $year - Year of the date. o $month - Month of the date. o $day - Day of the date. RETURN VALUES
Returns the DateTime object for method chaining or FALSE on failure. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.0 | | | | | | | Changed the return value on success from NULL to | | | DateTime. | | | | +--------+---------------------------------------------------+ EXAMPLES
Example #1 DateTime.setDate(3) example Object oriented style <?php $date = new DateTime(); $date->setDate(2001, 2, 3); echo $date->format('Y-m-d'); ?> Procedural style <?php $date = date_create(); date_date_set($date, 2001, 2, 3); echo date_format($date, 'Y-m-d'); ?> The above examples will output: 2001-02-03 Example #2 Values exceeding ranges are added to their parent values <?php $date = new DateTime(); $date->setDate(2001, 2, 28); echo $date->format('Y-m-d') . " "; $date->setDate(2001, 2, 29); echo $date->format('Y-m-d') . " "; $date->setDate(2001, 14, 3); echo $date->format('Y-m-d') . " "; ?> The above example will output: 2001-02-28 2001-03-01 2002-02-03 SEE ALSO
DateTime.setISODate(3), DateTime.setTime(3). PHP Documentation Group DATETIME.SETDATE(3)
All times are GMT -4. The time now is 02:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy