Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

script and $1 1

Status
Not open for further replies.

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.,
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top