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
Shell script that would check if the CD-rom is readable eamani_sun Shell Programming and Scripting 1 05-13-2008 06:54 PM
script check the users in SHELL ? anything Shell Programming and Scripting 3 02-01-2008 11:38 AM
Check EOF in shell script ideazhcy Shell Programming and Scripting 8 07-20-2007 03:29 PM
check in unix shell script so that no one is able to run the script manually adi_bang76 Shell Programming and Scripting 1 11-16-2006 10:43 AM
Special Character Check in Shell script mradul_kaushik Shell Programming and Scripting 1 03-24-2006 05:54 PM

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 05-14-2007
gridview gridview is offline
Registered User
  
 

Join Date: May 2007
Posts: 6
check my first shell script

I have written the below script to determine whether a string is palindrome or not ?
But its not working, any help to debug it ?

I am new to this forum but when I searched for my question, I found that many people refused to answer this question thinking that its Homework question, Therefore I want to make it clear that its not a Homework , I am learning shell scripting on my own.

If you can still help me, thank you much.
--------------------------------------
#!/bin/sh
var="mom"
var1=`echo $var|rev`
if [$var -eq $var1];then
echo "$var is palindrom"
else
echo "$var is not palindrom"
fi
  #2 (permalink)  
Old 05-14-2007
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,119
Code:
#!/bin/sh
var="mom"
var1=`echo $var|rev`
if [ $var = $var1 ]; then
   echo "$var is palindrom"
else
   echo "$var is not palindrom"
fi
P.S. pls use vB Codes when posting code snippets.
  #3 (permalink)  
Old 05-14-2007
gridview gridview is offline
Registered User
  
 

Join Date: May 2007
Posts: 6
Sorry, will take care from next time.

Quote:
Originally Posted by vgersh99
Code:
#!/bin/sh
var="mom"
var1=`echo $var|rev`
if [ $var = $var1 ]; then
   echo "$var is palindrom"
else
   echo "$var is not palindrom"
fi
P.S. pls use vB Codes when posting code snippets.
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 03:26 AM.


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