![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| 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 |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
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 |
| Display Modes | Rate This Thread |
|
|