The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
if statement ramky79 Shell Programming and Scripting 6 05-29-2008 03:17 AM
IF Statement koti_rama Shell Programming and Scripting 3 04-29-2008 04:48 AM
If statement - How to write a null statement april Shell Programming and Scripting 3 04-16-2008 01:14 PM
using && in if statement .. jisha Shell Programming and Scripting 7 02-01-2008 07:52 AM
If statement mariner UNIX for Advanced & Expert Users 4 12-16-2004 07:21 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 08-01-2002
lesstjm lesstjm is offline
Registered User
  
 

Join Date: Nov 2001
Posts: 59
Angry If Statement

I am working in korn shell ad I have the following problem:

EXPORTALLFIRST=Y

I have an if statement in my program

if [ "${EXPORTALLFIRST}" -eq Y ]
then


and I am getting the following error

export.sh[28]: Y: 0403-009 The specified number is not valid for this command.

Do you see any obvious errors?
  #2 (permalink)  
Old 08-01-2002
Perderabo's Avatar
Perderabo Perderabo is offline Forum Staff  
Unix Daemon
  
 

Join Date: Aug 2001
Location: Ashburn, Virginia
Posts: 9,111
-eq is an numeric test. Change to = instead.
  #3 (permalink)  
Old 08-01-2002
lesstjm lesstjm is offline
Registered User
  
 

Join Date: Nov 2001
Posts: 59
Cool thanks

thank worked
  #4 (permalink)  
Old 11-05-2006
lazarwebscapes lazarwebscapes is offline
Registered User
  
 

Join Date: Nov 2006
Posts: 2
Having trouble with simple If Statement

I'm trying to run a simple If statement, but am getting errors....please advise

#!/bin/bash
echo What is your name?
read name
if $name = Peter
then echo Hey! That is my name, too!
else echo That is not a bad name either.
fi

It doesn't seem to like line 4. How do I tighten that up so that it will work correctly? Thanks, and I realize this really is UNIX child's play. I just don't have anyone else to ask.
  #5 (permalink)  
Old 11-05-2006
nathan nathan is offline VIP Member  
Supporter
  
 

Join Date: Jul 2006
Posts: 156
You need to use 'test'. The shell itself calls a separate program to do the string comparison. You should probably use quotes too, though you may be able to get by without them.

Code:
#!/bin/bash
echo What is your name?
read name
if [ $name = "Peter" ]
then echo Hey! That is my name, too!
else echo That is not a bad name either.
fi
  #6 (permalink)  
Old 11-05-2006
lazarwebscapes lazarwebscapes is offline
Registered User
  
 

Join Date: Nov 2006
Posts: 2
re:

Thanks, buddy. It worked perfectly.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 08:59 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0