Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help implementing "goto <label>" in korn shell script....

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hello,

I am looking for help with a korn shell script. Basically, I am trying to implement &quot;goto <label>&quot; in my script, so that if I supply a command line argument to my script, I can jump to that position. For example:

<Myscript.ksh>
echo This is the beginning of the script
End:
echo This is the end of the script

I would like to execute the command:
Myscript.ksh End

and have it jump to the end of the script (or some other position defined by my labels) when executing. However, all of my efforts seem to indicate that neither &quot;goto&quot; or the use of labels is supported in the version of korn shell I am implementing. If anyone else has any ideas of a good way to do this, or knows what I am doing wrong, that would be a big help.

Thanks in advance

Mike
 
I don't think ksh supports gotos - perhaps you could try csh?

That said, I seem to recall something about a way to get ksh to imitate a goto somewhere in the unix threads - have you tried a search for goto in them?

HTH.
 
goto bad ...very bad....bad goto...


use a loop with a case statment in it.

while true
do

case $1
label1)dosomething;change $1;export $1;;
label2);;
exit)break;;
*);;
esac
done

then manipulate the value in $1


...my 2 cents
stan
 
There was a similar question in Thread80-72438 , which seems to have concluded that functions are the way to go(to). Good luck.
 
I'm with Stan - goto is a Bad Thing Mike
michael.j.lacey@ntlworld.com
Email welcome if you're in a hurry or something -- but post in tek-tips as well please, and I will post my reply here as well.
 
goto's are horrible. Try to work with
functions in the script and call the function
when you want to goto somewhere.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top