Re: Using die but not break out of the script

2001-12-10 Thread Michael . Mittentag
: [EMAIL PROTECTED] Subject: Re: Using die but not break out of the script 12/07/2001 02:52

Re: Using die but not break out of the script

2001-12-07 Thread Michael . Mittentag
] Subject: Re: Using die but not break out of the script 12/07/2001 02:52 PM

Re: Using die but not break out of the script

2001-12-07 Thread Daniel Gardner
Friday, December 07, 2001, 7:38:11 PM, [EMAIL PROTECTED] wrote: > Is there a way to use die but not break the entire script? > system ("dir $servervolume > dirinfo") || die "cant get dir info"; > I want it that if does die to assign a value of zero to a variable? Is > that posssible? how abou

Re: Using die but not break out of the script

2001-12-07 Thread Brett W. McCoy
On Fri, 7 Dec 2001 [EMAIL PROTECTED] wrote: > Is there a way to use die but not break the entire script? > > system ("dir $servervolume > dirinfo") || die "cant get dir info"; > > I want it that if does die to assign a value of zero to a variable? Is > that posssible? Yes, you can use die to th

RE: Using die but not break out of the script

2001-12-07 Thread Bob Showalter
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 07, 2001 2:38 PM > To: [EMAIL PROTECTED] > Subject: Using die but not break out of the script > > > Is there a way to use die but not break the entire script? > > system ("dir $servervol

RE: Using die but not break out of the script

2001-12-07 Thread Daryl J. Hoyt
You could use: system ("dir $servervolume > dirinfo") || ($var = 0); Daryl J. Hoyt Performance Engineer Geodesic Systems 312-832-2010 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, Dece