I have a usecase where I have to fire a bash command from perl and need that command to exit within a specified timeout Currently I am using this moudle
use System::Timeout qw(timeout);
timeout(10, "my bash script")
(As timeout is necessary I am not using system() to make the call)
This function returns 1 if shell script exitted with non-zero exit code or the command timed out.
Issues
- This function returns just 1 / 0 based on the command passed or failed(I need the exact exit code of the bash script)
- If it is 1, I do not get to know if script exitted with a non-zero exit code OR there was a timeout(Distinguish between a timeout and shell script failure)
- pid of called process is unknown (so that if the scipt fails due to timeout, I need to kill it)
It is important for me to satisfy both of the above criteria(I know very well how to do this in python, but could not get a solution for perl)
I do not know if forking a current process in perl and then monitoring it with SIGALRM will help (Forking will give me pid of the forked process and NOT the bash script which I have launched from that fork. Will killing the fork, also kill the bash process it launched?)
Thanks for the help
timeout(6, 'myscript.sh; echo $? > exitcode.txt');
If the file does not exist after thetimeout
you can be sure it timed out. – Håkon Hæglandtimeout()
will kill it. So then you would not need to obtain the PID? – Håkon Hægland