I am running this command in a script
while [ 1 ]
do
if [ -e $LOG ]
then
grep -A 5 -B 5 -f $PATTERNS $LOG >> $FOREMAIL
break
fi
done
$LOG file is scp'ed from another machine. So as soon as it appears in the current directory, while loop detects it and does the grep. The problem is, the $FOREMAIL file turns up to be empty. But if I run this grep outside of the script as a standalone command with same files and params, I can see that it generates an output.
I am baffled as to why this command is generating no o/p in the script?
$PATTERNS? I'd strongly recommend enclosing it in double quotes, because a typical regex has a gazillion shell metacharacters in it. Look at exactly what command is being executed; the chances are at least moderate that thegrepis simply not looking for what you thought it was looking for. – Jonathan Leffler Feb 10 '12 at 7:06