Hello,
I have a problem !!
There is a shell script "xyz" :
=========
#!/bin/sh
find / | filter | cat
=========
I call it with : ./xyz
When I kill the script with "kill PID" then
the pipe that was called inside the script is still runing.
My question is how to get the pipe killed automatically by killing the
script!!
Thanks a lot !!! Martin