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 Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 07-13-2005
cengiz cengiz is offline
Registered User
  
 

Join Date: Jun 2005
Posts: 16
if Statement...

...doesnt work

my Code

Code:
MOD=`expr $count % 2`
if ($MOD == 0) then echo "example"
in the prompt it prints me: ksh: syntax error: 'if' unmatched

why this problem?

I've tried already

if (($count ==0 )) # it doesnt work
and wit [] nad [[]] #it doesnt work too
  #2 (permalink)  
Old 07-13-2005
matrixmadhan matrixmadhan is offline Forum Advisor  
Technorati Master
  
 

Join Date: Mar 2005
Location: leaf node in B+ tree
Posts: 2,944
try this,


if [ $MOD = 0 ]; then echo "example"
  #3 (permalink)  
Old 07-13-2005
cengiz cengiz is offline
Registered User
  
 

Join Date: Jun 2005
Posts: 16
when i try your code the pormpt prints: then unmatched
  #4 (permalink)  
Old 07-13-2005
vino's Avatar
vino vino is offline Forum Staff  
Supporter (in vino veritas)
  
 

Join Date: Feb 2005
Location: Bangalore, India
Posts: 2,796
Quote:
Originally Posted by matrixmadhan
try this,


if [ $MOD = 0 ]; then echo "example"
Try this

if [ $MOD = 0 ]; then
echo "example"
fi;


Vino
  #5 (permalink)  
Old 07-13-2005
vino's Avatar
vino vino is offline Forum Staff  
Supporter (in vino veritas)
  
 

Join Date: Feb 2005
Location: Bangalore, India
Posts: 2,796
Quote:
Originally Posted by matrixmadhan
try this,


if [ $MOD = 0 ]; then echo "example"
Try this

Code:
if [ $MOD = 0 ] ; then 
echo "example"
fi ;
Vino
  #6 (permalink)  
Old 07-13-2005
cengiz cengiz is offline
Registered User
  
 

Join Date: Jun 2005
Posts: 16
Quote:
Originally Posted by vino
Try this

Code:
if [ $MOD = 0 ] ; then 
echo "example"
fi ;
Vino
it just prints me: ksh: syntax error: 'then' unmatched
  #7 (permalink)  
Old 07-13-2005
cengiz cengiz is offline
Registered User
  
 

Join Date: Jun 2005
Posts: 16
I've solved this problem and indeed
Code:
if [ $MOD -eq 0 ] ; then
  echo "ja" ;
fi
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 11:12 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