The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

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
Search a list of lines in file into files sriram003 UNIX for Advanced & Expert Users 2 05-20-2008 07:23 AM
View all lines in grep search wereyou UNIX for Dummies Questions & Answers 1 12-13-2007 06:38 PM
Can I search columns and print lines? Ant1815 UNIX for Dummies Questions & Answers 2 04-26-2007 07:01 AM
Search file for pattern and grab some lines before pattern frustrated1 Shell Programming and Scripting 2 12-22-2005 03:41 PM
Looking for a good way to search & destroy lines darthur UNIX for Dummies Questions & Answers 5 07-30-2002 12:14 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 04-21-2008
shalua shalua is offline
Registered User
  
 

Join Date: Apr 2007
Posts: 18
search for lines in a file

Hello

I need to check if following three files exist in a file, how to do that in shell script:
1. ALL MACHING RECORD COLUMNS MATCHED (Baseline and Regression File)
2. Total Mismatched Records (Baseline File): 0
3. Total Mismatched Records (Regression File): 0

Currently I am seaching only for one line "ALL MACHING RECORD COLUMNS MATCHED (Baseline and Regression File)" and doing it like this:

Code:
 if [  -s $regfiles_name ]; then
                grep "ALL MACHING RECORD COLUMNS MATCHED (Baseline and Regression File)" $regfiles_name
                retval=$?
                if [ $retval != 0 ]; then
                   echo $regfiles " - There is a mismatch" >> reg_email_body
                else
                   echo $regfiles " - Matched" >> reg_email_body
                fi
fi
How can I tweak it to check if all 3 lines exist?

Thanks!!

Last edited by Yogesh Sawant; 04-22-2008 at 01:24 AM.. Reason: added code tags
  #2 (permalink)  
Old 04-21-2008
shalua shalua is offline
Registered User
  
 

Join Date: Apr 2007
Posts: 18
Just want to make my question more clear. I want to check if all 3 lines exist or not, meaning an AND condition.

Thanks!!
  #3 (permalink)  
Old 04-21-2008
varungupta varungupta is offline
Registered User
  
 

Join Date: Feb 2007
Location: Pune, Dehradun (INDIA), Michigan(US)
Posts: 206
Quote:
Originally Posted by shalua View Post
Just want to make my question more clear. I want to check if all 3 lines exist or not, meaning an AND condition.

Thanks!!
Solution:
Check with grep -e "searchText1" -e "SearchText2" <FILENAME>

This makes the multiple search possible.

With AND caluse you can use sed option to search.
As :
sed '/pattern/action' filename

for multiple searchs use..
sed -e 'pattern1/p' -e '/pattern2/p' -e '/pattern3/p' FILE

Hope this'll work for you !!
Thanks.
  #4 (permalink)  
Old 04-21-2008
rubin's Avatar
rubin rubin is offline Forum Advisor  
Registered User
  
 

Join Date: Nov 2007
Posts: 321
Quote:
Originally Posted by shalua View Post
Just want to make my question more clear. I want to check if all 3 lines exist or not, meaning an AND condition.

Thanks!!
Give this a try:

Code:
#!/bin/sh
#set -x

filename="your_file"

lineA="ALL MATCHING RECORD COLUMNS MATCHED (Baseline and Regression File)"
lineB="Total Mismatched Records (Baseline File): 0"
lineC="Total Mismatched Records (Regression File): 0"


if grep "$lineA" "$filename" && grep "$lineB" "$filename" && grep "$lineC" "$filename"
then
echo "Match"  >> reg_email_body
else
echo  "There is a mismatch"  >> reg_email_body
fi
  #5 (permalink)  
Old 04-22-2008
shalua shalua is offline
Registered User
  
 

Join Date: Apr 2007
Posts: 18
neither worked!!

In both cases it hangs, looks like some syntax issue. any further suggestions!!
  #6 (permalink)  
Old 04-22-2008
shalua shalua is offline
Registered User
  
 

Join Date: Apr 2007
Posts: 18
also my script is a ksh script.
  #7 (permalink)  
Old 04-22-2008
shalua shalua is offline
Registered User
  
 

Join Date: Apr 2007
Posts: 18
sed -n -e '/BBB/p' -e '/AAA/p' emp.dat | sed -n '$='

works for me on the command line and gives me the count of lines matching either of these two patterns. But when I put it in the shell script, it returns errors.
Sponsored Links
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 05:24 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
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