I'm writing a shell script( in bash) which has a kermit script in it
with a suspend command. The problem arises that the suspend command
which is in the kermit script not only suspends kermit but it suspends
the calling shell script. I have played around and decided that maybe I
could trap signal 19 so that the shell script wouldn't be suspended.
Right now I have...
#! /bin/bash
trap "" 19 #ignore sigstop
kermit.script #call kermit script with suspend command in it
echo "done" #script never gets to this point
What am I doing wrong with the trap command or is there no way to trap
19 or does someone have another suggestion?
thank
-stos