Apr 12, 2006 #1 ogniemi Technical User Nov 7, 2003 1,041 PL a script (in ksh) can be run only with one of three allowed attributes, for example attr1 attr2 attr3 how should test be written to check is $1 is: attr1 or attr3 or attr3? if [ the $1 is one of allowed ] then ... fi thx in advance,rm.,
a script (in ksh) can be run only with one of three allowed attributes, for example attr1 attr2 attr3 how should test be written to check is $1 is: attr1 or attr3 or attr3? if [ the $1 is one of allowed ] then ... fi thx in advance,rm.,
Apr 12, 2006 1 #2 PHV MIS Nov 8, 2002 53,708 FR case $1 in attr[123]) echo OK;; *) echo BAD;; esac Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
case $1 in attr[123]) echo OK;; *) echo BAD;; esac Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886