The UNIX and Linux Forums  

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 04:17 AM
IF Statement koti_rama Shell Programming and Scripting 3 04-29-2008 05:48 AM
If statement - How to write a null statement april Shell Programming and Scripting 3 04-16-2008 02: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 04-24-2008
sasaliasim sasaliasim is offline
Registered User
  
 

Join Date: Apr 2008
Posts: 22
Help with if..then..else statement

When I run the script below I get a message stating that Thu=Mon is not found. Even when I change my if statement to if $day=Thu, I get a message stating Thu=Thu is not found. How can I fix this problem?

#!/usr/bin/ksh
d=`date +%a`
if $day=Mon
then
echo Today is Monday
else
echo "$d"
fi
  #2 (permalink)  
Old 04-24-2008
vgersh99's Avatar
vgersh99 vgersh99 is offline Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,122
Code:
#!/usr/bin/ksh
day=$(date +%a)
if [ "${day}" = 'Mon' ]; then
  echo Today is Monday
else
  echo "${day}"
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 03:30 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.

Content Relevant URLs by vBSEO 3.2.0