![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Korne Shell Script... | marconi | Shell Programming and Scripting | 5 | 12-06-2007 08:08 PM |
| Korne Shell... | marconi | Shell Programming and Scripting | 1 | 12-06-2007 11:01 AM |
| Some Problem with Korne Shell// | marconi | Shell Programming and Scripting | 4 | 12-06-2007 07:57 AM |
| Korne Shell Problem. | marconi | Shell Programming and Scripting | 3 | 12-05-2007 01:30 PM |
| Mailing in Korne shell | DeepakXavier | Shell Programming and Scripting | 5 | 10-09-2005 01:27 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
GOTO LOOP in KORNE SHELL
All
Please help to provide "goto" functionality in KORN shell script. ex: 1: Command Process some command if check some variable true goto 1 else process some other Please help to implement this example in korne shell script Thanks in advance Regards Deepak |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Code:
while :
do
Process some command
if [ check some variable ]
then
continue
else
break
fi
done
process some other
|
|||
| Google The UNIX and Linux Forums |