The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 05-17-2008
amatuer_lee_3 amatuer_lee_3 is offline
Registered User
 

Join Date: May 2008
Posts: 53
Code:
[2])    echo " "
			echo "You Have Selected To Access Index Page Information"
                       ###What do i put here to make it go to a new set of funtions###;;
Basically if i use this part of my script to move to another place for example the user selects option two, and i want it to output a function: so i type:

Code:
 [2])    echo " "
			echo "You Have Selected To Access Index Page Information"
                   readindex;;

###and have later in my code####

readindex () {

echo "hello"

}
it does not work

Last edited by amatuer_lee_3; 05-17-2008 at 06:40 PM.
Reply With Quote