elif not expected


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting elif not expected
# 1  
Old 07-25-2005
elif not expected

Hi,
I have a shell script which runs fine when i do it from Unix simulator on Widnows.
When i try to run the same for Unix it throws me the error
syntax error at line 87: `elif' unexpected.

Piece of code for the same is

while [ "$#" != "0" ]
do
if [ "$1" = "-config" ]; then
shift
configFile="$1"
shift
elif [ "$1" = "-cvstag" ]; then
shift
CVS_TAG_NAME="$1"
shift
elif [ "$1" = "-compilejsps" ]; then
shift
COMPILE_JSPS="on"
else
shift
fi
done


Please help me out.
It gives me another error \377: not found.
If some one can share his maild id ,i can send across the file.
# 2  
Old 07-25-2005
works fine on linux/bash.

What system/shell are you trying on?

That 377 error is weird?

$ echo -e "\377" | recode l1..
ÿ
# 3  
Old 07-25-2005
Sounds like you have a non ascii character in your file. try runnig the following command:

cat -vet yourfile.sh | more

This will convert any funny charcters to a viewable form and mark the real end of each line with a '$'.
# 4  
Old 07-25-2005
I am still getting the same errors after
running the command cat -vet doCodeDeployment.sh | more and executing my script.
As communciated it appended an $ at the end of each line in the script.
I have uploaded the file also.
# 5  
Old 07-25-2005
We are trying to run them on Unix Box...
# 6  
Old 07-25-2005
I ran it on a unix box and it worked fine...

The only question I have is if you really wanted the last elif and else condition to both run. Without the shift after COMPILE_JSPS="on", the else command ran also when the argument was -compilejsps:

while [ "$#" != "0" ]; do
if [ "$1" = "-config" ]; then
shift
configFile="$1"
echo "config $1"
shift
elif [ "$1" = "-cvstag" ]; then
shift
CVS_TAG_NAME="$1"
echo "cvstag $1"
shift
elif [ "$1" = "-compilejsps" ]; then
shift
COMPILE_JSPS="on"
echo "jsps set to $1"
shift
else
shift
echo "nothing"
fi
done

Gianni
# 7  
Old 07-25-2005
We are trying to run this on Solaris 8.
The script runs fine on Windows using Unix emulator.
whoever tried to run the sampel piece of code above says it is fine.
We are getting an error on Solaris8.
I removed

elif [ "$1" = "-compilejsps" ]; then
shift
COMPILE_JSPS="on"
else
shift

and ran the code it,does not throw me an error but does not work...
What differences does it amke on Solaris.
The Script is attached.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Problem with elif and else

Hello experts, I am having problems with ELIF. Please see the below code : read a; read b; read c; if || || ; then echo "EQUILATERAL" elif || || ; then echo "SCALENE" else echo "ISOSCELES" fi This code works fine for the EQUILATERAL case but fails completely for the... (5 Replies)
Discussion started by: H squared
5 Replies

2. Shell Programming and Scripting

If / elif

Hello all, I have a scenario where I take user input values and accordingly take actions say I run a script with sh scriptname -x GB -e txt (txt can also be text) I have used if clause for the first input (-x GB)and it is working fine Now for second the scenario is if then echo... (3 Replies)
Discussion started by: nnani
3 Replies

3. UNIX for Advanced & Expert Users

if else elif

Hi all,i have configured the following script to check if the file exists or not, #!/bin/sh sleep 30 { FILEFULL=$1`date +$2`* if ; then echo $FILEFULL exist else echo "$FILEFULL File not Found" | mail -s 'server' myaccount@mydomain.com fi } but i have a problem, i need to... (2 Replies)
Discussion started by: charli1
2 Replies

4. Shell Programming and Scripting

While-read and if-elif

Hi there, new to this forum and I recently encounter this problem: I tried to use if-elif loop in a while-read loop, something like this: #!/bin/bash while read myline1 myline2 do if ; then echo "Successful!" elif ; then echo "Failed" fi done < $1 Input file looks like this: 200... (13 Replies)
Discussion started by: kennethtls
13 Replies

5. Shell Programming and Scripting

elif if not expected

Hi All, I write an script will have some functions... I am getting elif not expected error.. Even tried by using set -x for debug but no use.. Could you please help me out in this Variables .... .... .... TEST_SRC() { cat ${filesrc} >> ${filetgt} if ]; then echo... (12 Replies)
Discussion started by: kmsekhar
12 Replies

6. Homework & Coursework Questions

if/elif help

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: This is my problem for the class. Write a script that asks for the user's age. If it is equal to or higher... (6 Replies)
Discussion started by: aggie6970
6 Replies

7. Shell Programming and Scripting

If -elif-else error.

I am getting below error from this code (which is at line 24): if ] #this is line24 in code then mv $File_source_path/$File_name $File_name'_'`date '+%d%m%y'` Error: line 24: Any help with the syntax. I am putting 2 condition with 'AND' clause. This is bash shell. (2 Replies)
Discussion started by: amit.mathur08
2 Replies

8. Shell Programming and Scripting

Query on If-Elif!!

Script Gurus, Need your help in getting this script to come out of logical error : I have pasted the script below: This script finds disk utilzation ... the script is written for both AIX and SUN OS... and option will be given in the initial to select DB or Non DB... its required for my prj...... (1 Reply)
Discussion started by: vangalli
1 Replies

9. UNIX for Dummies Questions & Answers

Help with ELIF statement

I am receiving an elif error on line 13 and I can not figure out the reasoning behind it. I have added the then statement that I was initially missing. Any help would be great. #The purpose of this script is for the end user to be able to enter a positive number #User enters a number NUM=$1... (4 Replies)
Discussion started by: Brewer27
4 Replies

10. Shell Programming and Scripting

If..elif..else...fi

Hi all, I got some problems on executing the following scripts. Scripts: if ]; then echo "M${str}O 0 1" >> ${tempFile} elif ]; then echo "M${str}O 1 0" >> ${tempFile} else echo "M${str}O 0 0" >> ${tempFile} fi Error: "`;' is not expected." what's the problem? (2 Replies)
Discussion started by: Rock
2 Replies
Login or Register to Ask a Question