I have a shell script which conditionally calls a function.
For Example:-
if [ \"$choice\" = \"true\" ] then process_install elif [ \"$choice\" =
#!/bin/bash process_install() { commands... commands... } process_exit() { commands... commands... } if [ "$choice" = "true" ] then process_install else process_exit fi