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 "goto <label>" 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 "goto" 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 am looking for help with a korn shell script. Basically, I am trying to implement "goto <label>" 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 "goto" 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