I want to execute Program_A, and have it output examined by Program_B. e.g.
$ Program_A | Program_B
Within Program_B, I would like to be able to terminate Program_A if a certain condition matched.
I am looking for a way to do this in BASH (have a solution in python with popen).
Also, pidof Program_A and alike are not a good solution since there can be many instances of it and only a particular one shall be terminated.