Functions
Last updated
Was this helpful?
Last updated
Was this helpful?
However
When it comes to scripts, functions are basically Inception; a script within a script...
Functions are useful when we need to execute the same code multiple times. Rather than re-writing the same chunk of code over and over, we just write it once as a function and then call that function as needed. Put another way, a function is a subroutine, or a code block that implements a set of operations – a “black box” that performs a specified task.
Functions may be written in two different formats. The first format is more common to Bash scripts:
However, bash will happily accept another format, which is likely more familiar to people who have experience programming in C:
So, let's look at a script where a function in created, and then called:
Functions can also accept arguments, making them very versatile and therefore useful in our scripting:
In this case, we passed a random number, $RANDOM
, into the function, which outputs it as $1
, the functions first argument. Note that the function definition (pass_arg()
) contains parentheses. In other programming languages, such as C, these would contain the expected arguments, but in Bash the parentheses serve only as decoration. They are never used. Also note that the function definition (the function itself) must appear in the script before it is called. Logically, we can’t call something we have not defined.
In addition to passing arguments to Bash functions, we can of course return values from Bash functions as well. Bash functions do not actually allow you to return an arbitrary value in the traditional sense. Instead, a Bash function can return an exit status (zero for success, non-zero for failure) or some other arbitrary value that we can later access from the $?
global variable. Alternatively, we can set a global variable inside the function or use command substitution to simulate a traditional return.