I want to start a process in a bash script like this:
myProcess -p someparameter > log.txt &
And then I want to stop the process as soon as log.txt
contains defined sentence to wait for
. So I am NOT waiting for a file, but for an entry in a logfile!
What is the best way to do that (without frying my processors, hence no loops which run like crazy)?
In comments I expressed my concerns about the stability of such a solution because the process might already have been stepped further at the moment the watchdog detects the message in the logfile.
You said to that:
The whole thing is about doing an automated analysis for one time on about 50 different inputs. Job done. It is not an academic exercise
.Ok, for such an use case you can do the following:
Note: I suppose that
process
will exit nicely onkill
in this example.