Sponsored Content
Full Discussion: 'end of file' unexpected
Top Forums Shell Programming and Scripting 'end of file' unexpected Post 302190036 by srisreeku on Monday 28th of April 2008 01:00:50 PM
Old 04-28-2008
'end of file' unexpected

HI,
I was converting a .bat file to .sh file for unix

Code snippet

#!/usr/bin/sh
set -x
if [ "$1" = "" ] then
goto RegularBuild;
CURDIR="$1";
cd "$CURDIR";

:RegularBuild
echo "Checking for existing fip_help.properties in def/properties directory..."
if [ -f fip_help.properties ] then
rm -f fip_help.properties;

if [ -f ../../def/properties/fip_help.properties ] then
goto found;

echo "fip_help.properties not found in def/properties directory"
goto gen;

:found
echo "Found fip_help.properties in def/properties directory."
echo "Copying fip_help.properties from def\properties directory..."
cp ../../def/properties/fip_help.properties .
goto gen;

:gen
fip_help_gen.sh ../../xml/fip_navigation.xml ../../xsl/fip_popups.xsl
if [ ! -f fip_help.properties ] then
goto error;

echo "Copying fip_help.properties to def/properties directory..."
cp fip_help.properties ../../def/properties/ .
chmod 444 ../../def/properties/fip_help.properties
echo "fip_help.properties file placed in def/properties directory."
goto end

:error
echo "fip_help.properties file generation failed"
goto end

:end
echo "completed"

set +x

End of code snippet

Could someone point me where I went wrong...
Thanks,
Sreeku
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

'end of file' unexpected

what do u mean by " 'end of file' unexpected "? i am running a script called "s1" which internally calls "s2" now s1 starts running & at a point (where it is suppose to call "s2") i get a message 'end of file' unexpected.... & my script(s) are not working.. any ideas on this? regards... (4 Replies)
Discussion started by: abhijeetkul
4 Replies

2. Shell Programming and Scripting

unexpected end of file

This is the script path=/oracle/ora10gdb/sample archive=/oracle/ora10gdb/archive cd $path for i in `ls`;do mv $i $archive Done Please tell me why it is givind this error (2 Replies)
Discussion started by: dineshr85
2 Replies

3. Shell Programming and Scripting

end of file unexpected

hi i have error like this' syntax error end of file unexecpeted.and give me the example of cut command as soon as possible: (1 Reply)
Discussion started by: naveeng.81
1 Replies

4. Shell Programming and Scripting

'end of file' unexpected

HELP PLEASE!! I am running this script, and i keep getting the error 'end of file' unexpected. I know that usually means parenthesis or whatever is out of place but i cant find anything!! I am new to scripting and i put some "print" staements in and it is not getting past the first IF statment... (7 Replies)
Discussion started by: weatherman0516
7 Replies

5. Shell Programming and Scripting

unexpected end of file error

hi, i am trying to connect to sqlplus in an 'if block' from the script. it is giving unexpected end of file error. and it works fine if it is out of 'if block'. if anybody have idea on this, can you please help me to solve the error ? piece of code is given below. if then... (11 Replies)
Discussion started by: vinayakatj56
11 Replies

6. Shell Programming and Scripting

Unexpected end of file, why?

I am getting a "line 47: syntax error: unexpected end of file", why? According to my estimate, line 47 is 2 lines after the last line of code here. Also, the $1 variable represents the current user logging in, and the script runs with root privileges (This is a Mac OS login hook script using... (5 Replies)
Discussion started by: glev2005
5 Replies

7. Shell Programming and Scripting

Unexpected end of file

Hi, On adding below code to my script shows the error on executing else script works fine. sqlplus $user_name/$password <<EOL truncate table order; commit; truncate table order_hist; commit; insert into order(ID,TRAN,CUST_NAME,OPT_VAL) select * from order_bkp; insert into... (5 Replies)
Discussion started by: milink
5 Replies

8. Shell Programming and Scripting

Unexpected end of file error

Hi , I am new to Unix and this is my first shell script . I am facing "unexpected end of file error" while executing my code . tried removing blank spaces Unable to trace out the error . PLease help !!! #!/bin/sh echo hello if ] echo hi then var=`cat liq_table_nm.txt` ... (6 Replies)
Discussion started by: sen180185
6 Replies

9. Shell Programming and Scripting

Unexpected End Of File Error

Hi guys, I am new to BASH scripting and I was wondering if anyone could have a look at this code and explain to me why I am getting an Unexpected End of File Error ? If you can that would be great / much appreciated! THANKS! #!/bin/bash USER="" PASS="" if ; then echo "You need to set... (1 Reply)
Discussion started by: spooke
1 Replies

10. Shell Programming and Scripting

unexpected end of file

I dont know where I missed the double quotes .:wall:pls review this code and help me out . m1: line 26: unexpected EOF while looking for matching `"' m1: line 34: syntax error: unexpected end of file echo "script is created by prabhu Kumar "; echo "changing the directory to wes... (2 Replies)
Discussion started by: ptappeta
2 Replies
XRotateWindowProperties()												 XRotateWindowProperties()

Name
  XRotateWindowProperties - rotate properties in the properties array.

Synopsis
  XRotateWindowProperties(display, w, properties, num_prop, npositions)
	Display *display;
	Window w;
	Atom properties[];
	int num_prop;
	int npositions;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  w	    Specifies the ID of the window whose properties are to be rearranged.

  properties
	    Specifies the list of properties to be rotated.

  num_prop  Specifies the length of the properties array.

  npositions
	    Specifies the number of positions to rotate the property list.  The sign controls the direction of rotation.

Description
  XRotateWindowProperties()  rotates  the  contents of an array of properties on a window.  If the property names in the properties array are
  viewed as if they were numbered starting from 0 and if there are num_prop property names in the list, then the value associated with	prop-
  erty	name  I  becomes the value associated with property name (I + npositions) mod num_prop, for all I from 0 to num_prop - 1.  Therefore,
  the sign of npositions controls the direction of rotation.  The effect is to rotate the states by npositions places around the virtual ring
  of property names (right for positive npositions, left for negative nposition).

  If npositions mod num_prop is non-zero, a PropertyNotify event is generated for each property, in the order listed.

  If a BadAtom, BadMatch, or BadWindow error is generated, no properties are changed.

Errors
  BadAtom   Undefined atom in the property list.

  BadMatch  An atom appears more that once in the list or no property with that name is defined for the window.

  BadWindow

See Also
  XChangeProperty(), XDeleteProperty(), XGetAtomName(), XGetFontProperty(), XGetWindowProperty(), XInternAtom(), XListProperties(), XSetStan-
  dardProperties().

Xlib - Properties													 XRotateWindowProperties()
All times are GMT -4. The time now is 12:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy