Re: what matched in a case statement

2008-05-14 Thread jidanni
Poor Yorick wrote: > Is there any way to get a handle on what matched in a case > statement? Something like this: > > case "lawlesspoets" in > *poets) > echo $CASEMATCH one Well, nobody would do > case "lawlesspoets" in in realit

Re: what matched in a case statement

2008-05-14 Thread Bob Proulx
Poor Yorick wrote: > Is there any way to get a handle on what matched in a case > statement? Something like this: > > case "lawlesspoets" in > *poets) > echo $CASEMATCH one > ;; > lawless*) >

what matched in a case statement

2008-05-13 Thread Poor Yorick
Is there any way to get a handle on what matched in a case statement? Something like this: case "lawlesspoets" in *poets) echo $CASEMATCH one ;; lawless*) echo $CASEMATCH two ;; esac -- Yorick