我编写了一个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