Skip to content

Instantly share code, notes, and snippets.

@samukasmk
Last active February 1, 2025 14:35
Show Gist options
  • Save samukasmk/8b3b78d223ca26ea9e868fd1a8471748 to your computer and use it in GitHub Desktop.
Save samukasmk/8b3b78d223ca26ea9e868fd1a8471748 to your computer and use it in GitHub Desktop.
Grep Matcher: wait to match first case and exit

grep_matcher.sh

#!/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!   ###'

Execution:

bash grep_matcher.sh "my custom string" /tmp/1.log

Output:

### waiting... ###
my custom string
### matched!   ###
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment