bash


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting bash
# 1  
Old 06-21-2010
bash

Hi All,
I have a question about shell script
I have a file named a.txt
Code:
#a.txt
RBS155_SITE1
	IP=10.42.33.3
	OptBootF="/WRAN/smrsslave1/AIF/Site1RBS155/summaryFile.xml"
	
RBS15_SITE1
	IP=10.42.33.2
	OptBootF="summaryFile.xml"
	

eRBS15_SITE1
	IP=192.168.1.2
	OptBootF="summaryFile.xml"
	NTPservs=10.42.52.99
	UTCoffst=23005253

Now I want to write a function who has two parameters
Code:
#para1: target file for example a.txt
#para2: target for example RBS15_SITE1
#return: 1: find target in the file  0: doesn't find the target in the  #file
find_client(){
        res=`exec awk '/'"$1"'/ {print $1 }' a.txt |cat`
	if [ $res = $2 ]; then 
		return 1
	else
		return 0
	fi
}

the problem is when I invoke the function as follows
Code:
find_client a.txt RBS15_SITE1

I find the value of res is
Code:
RBS15_SITE1 eRBS15_SITE1

the expected value of the res is RBS15_SITE1

I want to search file for the particular word.

How can I modify the function?Or can you give me a new solution


Thanks and BRs
Damon

Last edited by Scott; 06-21-2010 at 02:34 PM.. Reason: Please use code tags
# 2  
Old 06-21-2010
Code:
find_client() {
        grep -w $2 $1
        res=$?
	if [ $res -eq 0 ]; then 
		return 1
	else
		return 0
	fi
}

btw, In your awk statement, your are searching for the patter $1 !! which is the filename. the pattern is $2.
second, awk statement is not efficient.

If you do want to use that statement, use boundaries. ( surround the pattern with ^..$ )
# 3  
Old 06-21-2010
Code:
$
$
$ cat a.txt
#a.txt
RBS155_SITE1
        IP=10.42.33.3
        OptBootF="/WRAN/smrsslave1/AIF/Site1RBS155/summaryFile.xml"
RBS15_SITE1
        IP=10.42.33.2
        OptBootF="summaryFile.xml"

eRBS15_SITE1
        IP=192.168.1.2
        OptBootF="summaryFile.xml"
        NTPservs=10.42.52.99
        UTCoffst=23005253
$
$
$ cat -n searchprint.sh
     1  #!/usr/bin/bash
     2  find_client(){
     3    res=`awk /^$2$/ $1`
     4    echo "res = $res"
     5    if [ $res = $2 ] ; then
     6      echo "Found a match of $2 in $1, res = $res"
     7    else
     8      echo "Could not find a match, sorry"
     9    fi
    10  }
    11  find_client a.txt RBS15_SITE1
$
$
$ . searchprint.sh
res = RBS15_SITE1
Found a match of RBS15_SITE1 in a.txt, res = RBS15_SITE1
$
$

tyler_durden
# 4  
Old 06-21-2010
Thanks for you help.
I think I know how to deal with it .
# 5  
Old 06-21-2010
Quote:
Originally Posted by anchal_khare
Code:
find_client() {
        grep -w $2 $1
        res=$?
	if [ $res -eq 0 ]; then 
		return 1
	else
		return 0
	fi
}

btw, In your awk statement, your are searching for the patter $1 !! which is the filename. the pattern is $2.
second, awk statement is not efficient.

If you do want to use that statement, use boundaries. ( surround the pattern with ^..$ )

Question,

I've seen several people set the exit value of an event as a variable. Is there a reason for this, or is it just for readability?

I mean what's wrong with

Code:
$<command that will fail>
  if [[ $? -eq 1 ]];then
    echo "Oh no, call the police"
  else
    echo "light the fires and kick the tires, we did it"
  fi
Oh no, call the police
$

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed ? Is there any way to get the script names for the process command ? --- Post updated at 08:39 AM --- in KSH (Korn Shell), my command output shows the script names but when run in the Bash Shell... (3 Replies)
Discussion started by: i4ismail
3 Replies

2. UNIX for Beginners Questions & Answers

Escape bash-special character in a bash string

Hi, I am new in bash scripting. In my work, I provide support to several users and when I connect to their computers I use the same admin and password, so I am trying to create a script that will only ask me for the IP address and then connect to the computer without having me to type the user... (5 Replies)
Discussion started by: arcoa05
5 Replies

3. Shell Programming and Scripting

Different behavior between bash shell and bash script for cmd

So I'm trying to pass certain json elements as env vars and use them later on in a script. Sample json: JSON='{ "Element1": "file-123456", "Element2": "Name, of, company written in, a very weird way", "Element3": "path/to/some/file.txt", }' (part of the) script: for s... (5 Replies)
Discussion started by: da1
5 Replies

4. Shell Programming and Scripting

How to run several bash commands put in bash command line?

How to run several bash commands put in bash command line without needing and requiring a script file. Because I'm actually a windows guy and new here so for illustration is sort of : $ bash "echo ${PATH} & echo have a nice day!" will do output, for example:... (4 Replies)
Discussion started by: abdulbadii
4 Replies

5. Shell Programming and Scripting

Bash to select text and apply it to a selected file in bash

In the bash below I am asking the user for a panel and reading that into bed. Then asking the user for a file and reading that into file1.Is the grep in bold the correct way to apply the selected panel to the file? I am getting a syntax error. Thank you :) ... (4 Replies)
Discussion started by: cmccabe
4 Replies

6. UNIX for Dummies Questions & Answers

Im new to bash scriping and i found this expression on a bash script what does this mean.

# check host value regex='^(||1|2|25)(\.(||1|2|25)){3}$' if ')" != "" ]; then if ]; then echo host $host not found exit 4 fi elif ]; then echo $host is an invalid host address exit 5 fi espeacailly the top regex part? ---------- Post updated at 06:58 PM ---------- Previous update was... (1 Reply)
Discussion started by: kevin298
1 Replies

7. Shell Programming and Scripting

Using arrays in bash using strings to bash built-in true

I have the following code and for some reason when I call the program using /home/tcdata/tatsh/trunk/hstmy/bin/bash/raytrac.bash --cmod=jcdint.cmod I get hasArgument = hasArgument = true Somehow the array element is returning even though I have not chosen the option. ... (41 Replies)
Discussion started by: kristinu
41 Replies

8. Shell Programming and Scripting

how to make your bash script run on a machine with csh and bash

hi, i have a script that runs on bash and would like to run it on a machine that has csh and bash. the default setting on that machine is csh. i dont want to change my code to run it with a csh shell. is there any way i can run the script (written in bash) on this machine? in other words is there... (3 Replies)
Discussion started by: npatwardhan
3 Replies

9. Shell Programming and Scripting

bash and ksh: variable lost in loop in bash?

Hi, I use AIX (ksh) and Linux (bash) servers. I'm trying to do scripts to will run in both ksh and bash, and most of the time it works. But this time I don't get it in bash (I'm more familar in ksh). The goal of my script if to read a "config file" (like "ini" file), and make various report.... (2 Replies)
Discussion started by: estienne
2 Replies

10. Shell Programming and Scripting

passing variable from bash to perl from bash script

Hi All, I need to pass a variable to perl script from bash script, where in perl i am using if condition. Here is the cmd what i am using in perl FROM_DATE="06/05/2008" TO_DATE="07/05/2008" "perl -ne ' print if ( $_ >="$FROM_DATE" && $_ <= "$TO_DATE" ) ' filename" filename has... (10 Replies)
Discussion started by: arsidh
10 Replies
Login or Register to Ask a Question