#!/bin/bash
#
# grep matcher: wait to match first case and exit
grep_expression="$1"
grep_file="$2"
__matched=1
echo "### waiting... ###"
while [ "$__matched" == "1" ];
do
grep "$grep_expression" "$grep_file";
__matched=$?;
sleep 0.2
done
echo '### matched! ###'
bash grep_matcher.sh "my custom string" /tmp/1.log
### waiting... ###
my custom string
### matched! ###