Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the difference between the return and exit statement in BASH functions with respect to exit codes?

share|improve this question
10  
Protip: type help <command> in your shell to get info on what a shell builtin will do. In your case help return and help exit – SiegeX Dec 12 '10 at 1:31
No news. Note that I updated the question. I'm interested in return values and help return/help exit seem similar in that respect. – lecodesportif Dec 12 '10 at 1:38

2 Answers

up vote 23 down vote accepted

return returns a value from a function. exit abbandons the current shell.

EDIT:

As per your edit of the question, regarding exit codes, return has nothing to do with exit codes. Exit codes are intended for applications/scripts, not functions. So in this regard, the only keyword that sets the exit code of the script (the one that can be catch by the calling program using the $? shell variable) is exit.

share|improve this answer
But exit can also return a value from a function. – lecodesportif Dec 12 '10 at 1:31
2  
Not exactly. It always return a value from the current shell. It doesn't matter if you are inside a function or not. – Diego Sevilla Dec 12 '10 at 1:36
1  
Comment on your edit: I may be confusing return values and exit codes, but func(){ return 50; };func;echo $? echoes 50. So the $? shell variable doesn't seem to be limited to exit. – lecodesportif Dec 12 '10 at 1:53
1  
"$? Expands to the exit status of the most recently executed foreground pipeline." That exit may be from the shell in the form of a call to exit (or hitting the end of the script) or in the form of a call to return within a function. – SiegeX Dec 12 '10 at 1:58
3  
@lecodesportif: The $? of the current process/script is limited either to exit or to the result of the last command executed by this script. So, if your last script line is the call to that function, and that function returns 50, yes, the $? that you produce to the process that called you is 50. However, that doesn't have to do with the return, because this is restricted to the current script. It happens to be returned only if this function call is the last sentence of the script. exit, however, always finish the script and return that value as $? to the calling process. – Diego Sevilla Dec 12 '10 at 10:05

As noted, return will cause the current function to go out of scope where exit will cause the script to end at the point where it is called. Here is a sample program to help explain this:

#!/bin/bash

retfunc()
{
    echo "this is retfunc()"
    return 1
}

exitfunc()
{
    echo "this is exitfunc()"
    exit 1
}

retfunc
echo "We are still here"
exitfunc
echo "We will never see this"

Output

$ ./test.sh
this is retfunc()
We are still here
this is exitfunc()
share|improve this answer
Nice example. You could also show the exit value of 1 in $?. – Diego Sevilla Dec 12 '10 at 1:42
4  
Note that this function will NOT print "We are still here" if you add "set -e" before the call to "retfunc". – Michael Apr 30 '12 at 23:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.