Re: file script and cmd script difference (close)
- From: jbtacuyan@xxxxxxxxx (Joseph)
- Date: Thu, 29 Jun 2006 15:53:56 +0800
""Jeff Peng"" <peng@xxxxxxxxxxxx> wrote in message
news:BAY15-F4F01CF35D72F07D076247F47C0@xxxxxxxxxx
my($addr,$mac) = (split(/s+/))[0,2];
You maybe would check your scripts carefully at first.
Here should be:
my($addr,$mac) = (split(/\s+/))[0,2];
You have lost the '\' before 's+' in your regex.
ouch... for how many times i had checked it, what a hard learned lesson.
thanks.
/joseph
.
- References:
- file script and cmd script difference
- From: Joseph
- RE: file script and cmd script difference
- From: Jeff Peng
- file script and cmd script difference
- Prev by Date: RE: file script and cmd script difference
- Next by Date: Re: file script and cmd script difference
- Previous by thread: RE: file script and cmd script difference
- Next by thread: Re: file script and cmd script difference
- Index(es):
Relevant Pages
|