Hi all;
I'm new in this group.I don't know the level of the group yet but I would like to ask a basic question about shell scripting.
How do I call a script in other script(is there any command similar to call )
My script is such as:
until [[ $MENUCHOICE == "e" ]]
do
clear
echo "**************ADMIN MENU*******************"
echo
echo "a) User Manager"
echo "b) Group Manager"
echo "c) Tar me "
echo "d) Exit
echo
echo -n "Please enter your selection(a,b,c,d): "
read MENUCHOICE
case $MENUCHOICE in
"a")
So in case of a) I need to call "usermanager.bash".
How can I do this?
Any help would be great
Belinda
shell scripting