Sponsored Content
Top Forums Shell Programming and Scripting problem, with if condition in function Post 302188736 by gurukottur on Thursday 24th of April 2008 06:28:30 AM
Old 04-24-2008
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
}
______________________________________________________________
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

problem with if condition

hi, :) pls consider the following if statement if //g') ] then ........ else ....... when i execute the script i am getting the following error '(' unexpected I am not able to find the mistake. could anybody tell where i did mistake. cheers RRK (13 Replies)
Discussion started by: ravi raj kumar
13 Replies

2. Shell Programming and Scripting

problem in if condition

hi, actully i need the belp for the below. host_list=" Host1 host2 host3 host4 " n=`hostname` i need to put the condition like the below if n is among the host mention in the host_list if then #some stugg else # some other stuff fi (1 Reply)
Discussion started by: mail2sant
1 Replies

3. Shell Programming and Scripting

race condition with wait() function

Hi, I'm currently writing a bash script, that starts multiple threads: ____________________ #!/bin/bash loop=0 while((loop!=10)) do thread & ((loop++)) done #wait for all sub-processes (thread) to finish wait ___________________ Now I want to know, what happens, if a... (2 Replies)
Discussion started by: tho99
2 Replies

4. Shell Programming and Scripting

problem in if then else condition

Hi , I am trying the following simple script . But it is always giving 1 output. Dont know why #!/bin/sh find . -name "a.log" if ; then echo "1" else echo "0" fi Kindly advice. it is giving 1 output even when the a.log file is not there (26 Replies)
Discussion started by: himvat
26 Replies

5. Programming

performance issues of calling a function in if condition

Hi, I have written a program in C and have to test the return value of the functions. So the normal way of doin this wud b int rc rc=myfunction(input); if(rc=TRUE){ } else{ } But instead of doing this I have called the function in the if() condition. Does this have any... (2 Replies)
Discussion started by: sidmania
2 Replies

6. Shell Programming and Scripting

problem with if condition

Hi, I'm writing a bash script and i have a condition that goes if then break fi but, when i go to run it, i come across this line 10: ' where line 10 is the if I don't know what's going on :( (2 Replies)
Discussion started by: channyboy
2 Replies

7. Shell Programming and Scripting

if condition problem!

Hi All, I'm a newbie here, I'm just wondering how can i disable my 1st sed command if there's no file found on Yes_Directory and process instead the No_Directory because there's a file found on it. Yes_Directory="/home/yes/ No_Directory="home/no/ script: if ; then sed -i... (8 Replies)
Discussion started by: nikki1200
8 Replies

8. Shell Programming and Scripting

Function into a condition ?

Hello, How can i put a function into a condition ? g1 is my function I tested this in vain if g1 $1 $2 $3 -ne 0 ];thenif ;then Thanks for yours suggestions (18 Replies)
Discussion started by: amazigh42
18 Replies

9. Shell Programming and Scripting

If condition problem

Hi All, I am using below if condition to check whether null is passed as a parameter to the program if or ; then echo "ABC">>$FILE else echo "CDF">>$FILE fi However it is saying me null=null command not found . Please help me with this (9 Replies)
Discussion started by: Hypesslearner
9 Replies
SHAPE_STDVAR(7) 					 Miscellaneous Information Manual					   SHAPE_STDVAR(7)

NAME
shape_stdvar - shapeTools RMS project wide variant definitions DESCRIPTION
This file contains common variant definitions to be used in a software development project supported by the shape release management sys- tem. The stdvar file defines a variant raster for a whole development project. This central definition facility unifies the naming and semantics of supported system variants. Stdvar is to be included into the Shapefiles of any part of the developed system via shape's include mechanism. The definitions in stdvar should be carefully designed and maintained for each supported project. They usually concern variant control for all hardware/operating system platforms to be supported or variant settings to produce different qualities of generated code (debug or optimized). Enclosed in the shapeTools distribution, you find the stdvar file used in the development of the shape toolkit itself. This may be a good starting point for developing an own variant raster. At least, it helps you learning the definition syntax. Otherwise, for a description on the syntax of variant definition parts see the shape(1) manual. FILES
$(SHAPELIBPATH)/stdvar SEE ALSO
shape_RMS(1), shape (1) 9.9.119 SHAPE_STDVAR(7)
All times are GMT -4. The time now is 06:15 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy