Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
02-04-2010, 02:09 PM
|
#1
|
Member
Registered: May 2009
Posts: 181
Rep:
|
Unexpected end-of-file error (bash script) - need another pair of eyes.
I'm pretty much satisfied that all the i's have been dotted and the t's crossed, so far as if/fi, closed parentheses, in-out quotation marks and the like go. I just need another pair of eyes to be sure. My bash shell keeps insisting on there being a line 32 to this script, while nano, vim and the "cat foo.sh | wc -l" combo all agree with my GUI text editor (with which I wrote 98% of the script -- and yes it's been dos2unix'ed as well)-- there are only 31 lines!
Here's the script:
Code:
#!/bin/bash -x
echo -ne "Fixture Identification Fixer for Exiv2 - FIFE\n"
echo -ne "Please enter the name of the file you want to modify.\n"
read gfile
if [ -e $gfile ]
then
oldf1=$(exiv2 -PInv $gfile | grep 'FixtureId' | sed 's/^FixtureId[ ]*//')
echo -e "The word or phrase currently in this file reads: ${oldf1}.\n"
echo -ne "Do you want to change this Fixture ID to something else? y/n \n"
read yesorno
if [ $yesorno = "n" ]
then
echo -ne "No changes made to file ${gfile}\.\n"
else
echo "Are you sure? y/n "
read confirmm
if [ $confirmm = "n" ]
then
exit 1;
else
exiv2 -M"del Iptc.Application2.FixtureId" modify $gfile
echo -e "The old FixtureID has been removed."
echo -ne "Please enter the word or phrase to replace '$oldfi .'\n"
read newstringhx
exiv2 -M"add Iptc.Application2.FixtureId String $newstringhx" modify $gfile
sleep 1
echo -ne "The new phrase, \"$newstringhx\",\n has been written to file \033[37;40m${gfile}.\033[0m\n"
fi
fi
else
echo -e "Sorry, that file is not in this folder."
You might notice one if without an fi. Everytime I add it back, I get an "unexpected token" error for it and its line. So there's got to be some other punctuation or complementary code missing somewhere.
Hope someone finds whatever it is, and can point it out to me. No sweat off my knee if it was something I couldn't see (rhyme unintended).
BZT
|
|
|
02-04-2010, 02:26 PM
|
#2
|
Member
Registered: Jan 2010
Location: the universe
Distribution: Slackware (modified), Slackware64 (modified), openSuSE (modified)
Posts: 342
Rep:
|
If I add an "fi" at the end, the script runs without errors.
But you should replaces
Code:
if [ $yesorno = "n" ]
with
Code:
if [ "X$yesorno" == "Xn" ]
to avoid a problem, if yesorno is empty.
|
|
1 members found this post helpful.
|
02-04-2010, 06:11 PM
|
#3
|
LQ Guru
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.x
Posts: 18,434
|
|
|
1 members found this post helpful.
|
02-05-2010, 12:04 AM
|
#4
|
LQ 5k Club
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578
|
Quote:
Originally Posted by irmin
But you should replaces
Code:
if [ $yesorno = "n" ]
with
Code:
if [ "X$yesorno" == "Xn" ]
to avoid a problem, if yesorno is empty.
|
More elegantly the problem can be solved like this (the double quotes around n were not wrong but single quotes are adequate)
Code:
if [ "$yesorno" = 'n' ]
But chrism01 is right to point out that [[ ]] is a better solution. [[ ]] is preferred over [ ] for reasons explained here.
|
|
|
02-05-2010, 12:07 AM
|
#5
|
LQ 5k Club
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578
|
This thread is a duplicate of this thread.
|
|
|
02-05-2010, 09:34 AM
|
#6
|
Member
Registered: May 2009
Posts: 181
Original Poster
Rep:
|
To avoid another duplication...
@chrism,
I thought that approach, double-brackets, would be the way to go about it, too. I've found that they do prevent errors of a few types in other scripts. Good to have a reminder.
Quote:
Originally Posted by chrism01
|
@catkin:
I apologize for the duplicate thread. I'm not certain as to how it occurred, but I suspect it may have been due to a double-login on my part, ie, closing a window with the site (and the original thread) in it and not waiting for the customary timeout before logging back in while viewing another thread (which link opened via Google or some item in my browser history). I'll do what I can to add only to this thread, unless doing so makes deleting its twin more difficult. I'd appreciate your advice on how to proceed.
Quote:
Originally Posted by catkin
|
BZT
|
|
|
02-05-2010, 09:41 AM
|
#7
|
LQ 5k Club
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578
|
Quote:
Originally Posted by SilversleevesX
I apologize for the duplicate thread. I'd appreciate your advice on how to proceed.
|
No worries
You could use the Report button on the first post in one of the threads to ask the moderators to close it.
|
|
|
02-05-2010, 02:12 PM
|
#8
|
Member
Registered: May 2009
Posts: 181
Original Poster
Rep:
|
Done.
Quote:
Originally Posted by catkin
No worries
You could use the Report button on the first post in one of the threads to ask the moderators to close it.
|
Done.
BZT
|
|
|
All times are GMT -5. The time now is 05:33 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|