从远程节点运行时,bash脚本case语句不会退出

问题描述 投票:0回答:1

我有一个脚本,它会重启一些应用程序。它的选项2(并且只有2)in case语句不会退出;;以下列格式从远程节点运行时的选项

ssh a @ ip /path/script.sh 2 01 05 2019

选项1和3有效。选项1没有退出语句在执行后仍然退出脚本。对于选项2,我可以看到执行发生直到最后一个echo语句。

脚本如下

source /geneva/app/phts1/.profile

e_name=`echo $HOME|cut -d "/" -f4`

ch=$1
dt=$2
mt=$3
yr=$4


case "$ch" in
  1)
    #..... some script .. working and exiting properly#
    ;;
  2)
    e_sid=`echo $ORACLE_SID`
    e_name=`echo $HOME|cut -d "/" -f4`


    x=12000000
    z=' '
    export GENEVA_FIXEDDATE=$yr$mt$dt$z$x
    process_id=`ps -fu $e_name|egrep 'TM|DConfigAgent'|tr -s " " " "|cut -d " " -f2`


     kill -9 $process_id  &
     cd $HOME/bin
     dconfigadmin -L platform.cfg ## custom application
     DConfigAgent & ## custom application
     sleep 1

     TM -u admin -p password -s $e_sid & ## custom application

     sleep 2
    # clear
     ls -lrt $HOME/log >>aaa.txt
     dt1=`cat aaa.txt|tail -1|tr -s " " " "|tr -s " " "\n" |tail -1`
     rm aaa.txt
     ls -lrt $HOME/log/$dt1>>aaa.txt
     dt2=`cat aaa.txt|tr -s " " " "|cut -d " " -f9|grep ^TM|tail -1`
     rm aaa.txt
     tail -100 $HOME/log/$dt1/$dt2

     echo "execution ends here ...... I can see till this echo statement being printed"
     ;;
  *)
            echo "wrong option"
            exit
            ;;

esac
bash unix ssh switch-statement
1个回答
0
投票

您的脚本启动后台作业:

kill -9 $process_id  &
DConfigAgent & ## custom application

您尚未重定向其I / O,因此您的ssh会话正在等待这些命令完成。

不明显为什么kill需要背景,但另一个命令可以给出:

nohup DConfigAgent </dev/null >/dev/null 2>/dev/null &
© www.soinside.com 2019 - 2024. All rights reserved.