![]() |
|
|
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 |
| Search a list of lines in file into files | sriram003 | UNIX for Advanced & Expert Users | 2 | 05-20-2008 08: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 08: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 01:14 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
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 02:24 AM.. Reason: added code tags |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|