0

私はこれを持っています:

#!/bin/sh

handle_exit()
{
    # if func2 called first then do some thing to kill func1 also 
    # if func1 called first then do some thing to kill func2 also 

    exit
}

func1()
{
    for i in `seq 40`
    do
        echo I am in func1 $i
        sleep 3

        if [ "$i" = "20" ] ; then # this could be a failure condition
            handle_exit 
        fi
    done
}

func2()
{
    for i in `seq 40`
    do
        echo I am in func2 $i
        sleep 3

        if [ "$i" = "10" ] ; then # this could be a failure condition
            handle_exit             
        fi
    done
}

func1 &

pidfunc1=$!

func2 &

pidfunc2=$!

どのように動作させたいですか:

  1. サブプロセスとしてfunc1とfunc2を呼び出します。(すでにこれを行っています)
  2. func1実行中にエラーが発生した場合は、func2を強制終了handle_exitする必要がexit func1あります。
  3. #2と同じですが、func2用です。func2実行中にエラーが発生した場合は、func1を強制終了handle_exitする必要がexit func2あります。

手伝ってくれますか?

4

1 に答える 1

-1

スクリプトの先頭に次のように入力します。

pidfunc1=0;
pidfunc2=0;

handle_exit()
{

    if [ "pidfunc1" != "0" ] ; then
            kill -9 $pidfunc1
            echo "killed 1"
    fi
    if [ "pidfunc2" != "0" ] ; then
            kill -9 $pidfunc2
            echo "killed 2"
    fi

}
于 2012-06-18T21:59:52.430 に答える