The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 03-24-2005
Perderabo's Avatar
Perderabo Perderabo is offline Forum Staff  
Unix Daemon
  
 

Join Date: Aug 2001
Location: Ashburn, Virginia
Posts: 9,131
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.