当Bash脚本调用它时,Csh脚本不会退出

时间:2016-10-11 14:40:48

标签: linux bash shell

我编写了一个Bash脚本来调用Csh脚本。在Csh脚本完成后,它不会退出,即使是"退出"命令附加在文件的最后一个。以下是脚本:

$ cat test.sh
#!/bin/sh
./test1.csh

$ cat test1.csh
#!/bin/csh
echo "I'am test1.csh"
exit

当我运行" test.sh",the Csh script did not exit.

使用ps -ef | grep test,发现该流程仍在运行,as shown in this screenshot

0 个答案:

没有答案