|
|
Question : nested ifs in korn shell scripting
|
|
I want to write nested if statement in korn Shell script
if then ---- elif then ---- within the elif I want to write another if statement
else
--- fi
Please advise.
|
Answer : nested ifs in korn shell scripting
|
|
if condition then ---- elif condition then if condition then else fi fi
|
|
|
|