hok1man
Technical User
- Feb 16, 2008
- 102
Hi guys,
I was wondering whether we can do dynamic in case options from a file :
for example in a file content like this :
step_first.ksh
step_second.ksh
step_third.ksh
so in normal static case selection it would look like this.
how if I would like to make it dynamic, so if I put step_four.ksh in the file, I don't have to change my script.
Any idea would be appreciated.
Thanks guys
I was wondering whether we can do dynamic in case options from a file :
for example in a file content like this :
step_first.ksh
step_second.ksh
step_third.ksh
so in normal static case selection it would look like this.
Code:
case "$SELECT" in
1) step_first.ksh ;;
2) step_second.ksh ;;
3) step_third.ksh ;;
esac
how if I would like to make it dynamic, so if I put step_four.ksh in the file, I don't have to change my script.
Any idea would be appreciated.
Thanks guys