|
Not too much to go on here... But if you don't have an explicit exit statement to set the return code, most shells effectively do a:
return $?
which is to say that the return the exit code of the last command that they ran. So your script probably ran one or more programs. And the last one exited with 134. So you need to look at the docs for that program.
|