I am new-bie to shell script. I am struggling with one scenario. The Scenario as follows, I have a function which will perform some tasks here I have to use if condition. If condition is true then it should call the respective function to perform the task.
For Example:-
if [ "$choice" = "true" ]
then
process_install
elif [ "$choice" = "false" ]
then
process_exit
fi
process_install()
{
commands...
commands...
}
process_exit()
{
commands...
commands...
}
Please let me know how to accomplish this.
{}button on the toolbar. You should still check the preview to make sure it's right before posting, though. Thanks. :) – Ken White Nov 19 '11 at 7:34