3

我有以下内容script1.sh

#!/bin/bash

trap 'echo "Exit signal detected..."; kill %1' 0 1 2 3 15

./script2.sh & #starts a java app
./script3.sh #starts a different java app

当我执行 CTRL + C 时,它会终止script1.sh,但启动的 Java Swing 应用程序script2.sh仍然保持打开状态。怎么不杀呢?

4

2 回答 2

1

我认为这样的事情可能对你有用。但是,正如@carlspring 提到的,您最好在每个脚本中都有类似的内容,这样您就可以捕获相同的中断并杀死任何丢失的子进程。

随便拿

#!/bin/bash

# Store subproccess PIDS
PID1=""
PID2=""

# Call whenever Ctrl-C is invoked
exit_signal(){
    echo "Sending termination signal to childs"
    kill -s SIGINT $PID1 $PID2
    echo "Childs should be terminated now"
    exit 2
}

trap exit_signal SIGINT

# Start proccess and store its PID, so we can kill it latter
proccess1 &
PID1=$!
proccess2 &
PID2=$!

# Keep this process open so we can close it with Ctrl-C
while true; do
    sleep 1
done
于 2013-02-13T07:43:25.663 回答
0

好吧,如果您在后台模式下启动脚本(使用&),在调用脚本退出后继续执行是正常行为。您需要通过存储echo $$到文件来获取第二个脚本的进程 ID。然后让相应的脚本有一个stop命令,当你调用它时,它会杀死这个进程。

于 2012-06-25T08:29:26.693 回答