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 > UNIX for Dummies Questions & Answers
.
google unix.com



UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
word count wc chaandana UNIX for Dummies Questions & Answers 5 05-05-2009 10:47 AM
Sorting using count, grep and count sukhpal_78 UNIX for Dummies Questions & Answers 2 06-27-2008 12:13 AM
specified word count bhaviknp Shell Programming and Scripting 5 02-27-2008 11:23 AM
grep all records in a file and get a word count -perl meghana Shell Programming and Scripting 4 02-13-2008 10:06 PM
count word ariuscy UNIX for Dummies Questions & Answers 1 10-13-2005 12:36 AM

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 03-10-2009
Meert's Avatar
Meert Meert is offline
Registered User
  
 

Join Date: Sep 2007
Posts: 8
if clause with grep and word count

I've got following script that I thought would only email me when the if clause finds the grep. But it emails me anyway (with an empty file) even if the grep doesn't return anything.

What should the line be?

Code:
if [ "`grep -l 'unique constraint' $LOGDIR/archive_active* | wc -l`" > "0" ]
then grep -l 'unique constraint' $LOGDIR/archive_active* > $LOGDIR/archive_error.lis
mailx -s "Archive_active logging contains unique constraints - ACTION REQUIRED" john@doe.com <<EOF
`cat $LOGDIR/archive_error.lis`
EOF
fi
thanks in advance.

regards, Meert
  #2 (permalink)  
Old 03-10-2009
vgersh99's Avatar
vgersh99 vgersh99 is offline Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,122
use '-gt' instead of '>' for the algebraic comparison.

You could also use '-c' (instead of '-l') for grep and avoid piping to 'wc' - 'man grep'
  #3 (permalink)  
Old 03-10-2009
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,759
Try this:
Code:
 grep -q 'unique constraint' $LOGDIR/archive_active* && \
   grep -l 'unique constraint' $LOGDIR/archive_active*  |
   mailx -s "Archive_active logging contains unique constraints - ACTION REQUIRED" \ 
       john@doe.com
  #4 (permalink)  
Old 03-11-2009
Meert's Avatar
Meert Meert is offline
Registered User
  
 

Join Date: Sep 2007
Posts: 8
Thanks!
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 07:47 PM.


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