⇤ ← Revision 1 as of 2007-07-26 13:00:33
Size: 2297
Comment: "How do I return a string from a function? "return" only lets me give a number."
|
Size: 2316
Comment: add the anchor tag
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
[[Anchor(faq84)]] |
How do I return a string from a function? "return" only lets me give a number.
Functions in Bash (as well as all the other Bourne-family shells) work like commands; that is, they only "return" an exit status, which is a number from 0 to 255 inclusive. This is intended to be used only for signaling errors, not for returning the results of computations, or other data.
If you need to send back arbitrary data from a function to its caller, there are at least three methods by which this can be achieved:
- You may have your function write the data to stdout, and then have the caller capture stdout.
foo() { echo "this is my data" } x=$(foo) echo "foo returned '$x'"
The drawback of this method is that the function is executed in a subshell, which means that any variable assignments, etc. performed in the function will not take effect in the caller's environment. This may or may not be a problem, depending on the needs of your program and your function.
- You may assign data to global variables, and then refer to those variables in the caller.
foo() { RETURN="this is my data" } foo echo "foo returned '$RETURN'"
The drawback of this method is that, if the function is executed in a subshell, then the assignment to a global variable inside the function will not be seen by the caller. This means you would not be able to use the function in a pipeline, for example.
- Your function may write its data to a file, from which the caller can read it.
foo() { echo "this is my data" > "$1" } # This is NOT solid code for handling temp files! TMPFILE=$(mktemp) # GNU/Linux foo "$TMPFILE" echo "foo returned '$(<"$TMPFILE")'" rm "$TMPFILE" # In the event that this were a real program, there # would have been error checking, and a trap.