Re: k-shell case statement

2001-08-20 Thread Brett W. McCoy
On Mon, 20 Aug 2001 [EMAIL PROTECTED] wrote: > What is the best perl example of a k-shell case statement as follows: > > case "$VAR1" > in > 1 ) > statements > ;; > 2) > statements > ;; > * ) > other st

Re: k-shell case statement

2001-08-20 Thread Maxim Berlin
Hello Robert, Tuesday, August 21, 2001, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Ric> What is the best perl example of a k-shell case statement as follows: Ric> case "$VAR1" Ric> in take a look at "Basic BLOCKs and Switch Statements" in p

RE: k-shell case statement

2001-08-20 Thread Gibbs Tanton - tgibbs
perldoc -q switch -Original Message- From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: 8/20/2001 4:25 PM Subject: k-shell case statement What is the best perl example of a k-shell case statement as follows: case "$VAR1" in 1 ) statements ;; 2)

k-shell case statement

2001-08-20 Thread Robert_Collins
What is the best perl example of a k-shell case statement as follows: case "$VAR1" in 1 ) statements ;; 2) statements ;; * ) other statements esac