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
Problem with function script. gzs553 Shell Programming and Scripting 3 04-21-2008 04:15 PM
Problem with IF condition in awk ashikin_8119 Shell Programming and Scripting 2 11-27-2007 09:53 PM
Problem with Recursive function malle Shell Programming and Scripting 4 02-03-2007 10:40 AM
problem with if condition ravi raj kumar Shell Programming and Scripting 13 01-10-2007 01:06 PM
If condition problem maheshsri Shell Programming and Scripting 5 11-05-2005 05:19 AM

 
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
Prev Previous Post   Next Post Next
  #1 (permalink)  
Old 04-24-2008
gurukottur gurukottur is offline
Registered User
  
 

Join Date: Apr 2006
Posts: 40
problem, with if condition in function

Hi All,

I have a function which reads parameter and gets the value from config file.

The entry in the file can be either of two
Name=value or
Name[variant]=value

so if the variant is not present it should return me the generic value ie Name without variant.

I am first searching for variant in the file and taking the count using grep, so if it is > 0 then search for variant else generic.

But if condition is not evaluating properly and is always treating it as 0.

Below is the function.................Please HELP ME.............


______________________________________________________________
function getProp () {
name=$1;variant=$2
var=$(grep -c \b"$variant"\b "$RUNNING_CONFIG_FILE")
if [ $var -eq 0 ];then
{
awk -F '([ \t]=)|(=)' '
BEGIN {
value=""
exitcode=0
}
/^[ \t]*#/ {next}
$1 ~ /'$1'$/{value=$2;exitcode=0}
END {print value}' "$RUNNING_CONFIG_FILE"
}
else
{
awk -F '([ \t]*=)|(=)' '
BEGIN {
value=""
OFS="="
exitcode=0
}
/^[ \t]*#/ {next}
/'$name'\['$variant'\]/ || /'$name'\[[ ]'$variant'[ ]\]/ { if (NF == 3) {value=$2"="$3} else {value=$2}}
END {if ("'"$3"'" ~ /NoSpace/) {gsub("(^[ \t]*)|([ \t]*$)","",value);print value} else {print value}}' "$RUNNING_CONFIG_FILE"
}
fi
}
______________________________________________________________
 

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 05:49 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