The UNIX and Linux Forums  

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 excat string in another string (grep "fails") bora99 UNIX for Dummies Questions & Answers 0 06-05-2008 07:41 AM
Grep string and next line karthikn7974 Shell Programming and Scripting 7 05-23-2008 06:06 AM
problem with grep on search string in a txt file over multiple files m00 UNIX for Dummies Questions & Answers 2 05-18-2008 03:21 PM
ps -ef |grep <string> soliberus SUN Solaris 9 12-07-2007 03:31 AM
sed, grep, awk, regex -- extracting a matched substring from a file/string ropers Shell Programming and Scripting 2 05-23-2006 02:56 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 11-22-2007
eb222 eb222 is offline
Registered User
  
 

Join Date: Mar 2007
Posts: 6
how to grep for string in log file

Hi

Im running a backup scriptwhich creates a log file

how do grep for the string in the logfile so the backup script can continue to next stage otherwise it will exit

i.e

12:32:53 INF - Client completed sending data for backup

12:33:02 INF - Backup by root on client lonbob04bak using policy Business_Objects_User, sched bus_obj_user: the requested operation was successfully completed.

so want to have something like:


if

[logfile | grep "the requested operation was successfully completed"]

then continue
  #2 (permalink)  
Old 11-22-2007
Cameron's Avatar
Cameron Cameron is offline Forum Advisor  
Registered User
  
 

Join Date: Nov 2001
Location: Brisbane, Australia
Posts: 500

Code:
if [ `grep "the requested operation was successfully completed" ${LOGFILE}` ]
then
  ... all ok ...
else
  ... gone south ...
fi

Off the cuff, so please test yourself. (just to be sure)

Last edited by Cameron; 11-22-2007 at 09:13 AM.. Reason: missed a '`'
  #3 (permalink)  
Old 11-22-2007
sandy0077's Avatar
sandy0077 sandy0077 is offline
Registered User
  
 

Join Date: Aug 2007
Location: UK
Posts: 10
or maybe... u could

grep "the requested operation was successfully completed" logfile > /dev/null
if [ $? -eq 0 ]
then
continue
else
exit
fi

-
  #4 (permalink)  
Old 11-22-2007
mvictorvijayan mvictorvijayan is offline
Registered User
  
 

Join Date: Sep 2007
Posts: 29
script

#!/bin/ksh

grep "the requested operation was successfully completed" $1 >/dev/null
RESULT =`echo $?`
if [ $RESULT == 0 ]; then
echo "Continue"
else
echo "Stop"
fi

Assume this script file name is sample.sh. If your log file name is logfile, then in the command prompt give like this

$sample.sh logfile
  #5 (permalink)  
Old 11-22-2007
grial's Avatar
grial grial is offline Forum Advisor  
El UNIX es como un toro
  
 

Join Date: Jun 2006
Location: Madrid (Spain)
Posts: 531
There are several approaches depending on:
- the backup script runs outside your script.
- the backup script finishes when that line is shown inside the log.
- the backup log only has (or will have) one line containing the text.
- others...
One possibility in this case:

Code:
#!/bin/ksh

( tail -f backup.log | while read l; do
   echo ".\c"
   echo $l | grep "the requested operation was successfully completed" > /dev/null 2>&1
   (( ! $? )) && exit 0
done ) && echo "string found, continue..."

# whatever to execute after the match, down here...

At least if you want to check the log file "on the fly"...

Regards.

Last edited by grial; 11-22-2007 at 12:21 PM.. Reason: comment added
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 03:34 AM.


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