我需要perl的幫助。我對它很陌生。 我想從我父母的Perl腳本執行一個Perl腳本,包括以下情形:想要在perl腳本中執行perl腳本
if (my child script takes more time than my time limit)
{
I need to kill the child script with a return code
logged into my parent script log file
}
if (my child script failed to execute)
{
I need to write a new RC to my parent script logfile
by looking at my child script exit status
}
任何機構可以爲此提供類似的代碼如何使用fork,exec和工藝相關的命令 獲取的進程id孩子什麼時候我的父母腳本被執行?
只有父母可以殺死一個孩子。 :D –