Menu Script looping

Hi , I have a menu driven script as shown below

echo ""
echo "*** 1 - option 1 " echo "*** "
echo "*** 2 - option 2 "
echo "*** 3 - option 3 "

read input1

Selecting option 1 shows another menu wherein
echo ""
echo "*** 1 - script 1 " echo "*** "
echo "*** 2 - script 2 "

read input 2
 
if  [ $input1 -eq 1 ] && [ $input2 -eq 1 ]
  then
       $script_path/$script name
       sleep 1

echo " Press [ ENTER ] to continue "

once the script is executed command prompt gets dispalyed .
I want to add something whereiin , I can continue running the second script [ ie no need to run the script again and supply parameters for running script 2 ( option 2) ]

Hope i have made provided enough clarity on what i tried to do

Pls suggest

You'll have to make a loop and provide a menu option to break the loop and exit.

Hi

Thanks for the reply , any ideas how to execute that ...
running short of ideas on this

What are the parameters you need to enter just once?
Could you post the whole script?
You can write it in pseudo-code, just to show the logic you want to involve.