Re: Basic Perl Questions

2010-02-08 Thread PolyPusher
On Feb 3, 2:26 pm, jwkr...@shaw.ca ("John W. Krahn") wrote: > PolyPusher wrote: > > Hi All, > > Hello, > > > I have some Perl experience but has been awhile.   I mainly write > > SKILL lisp programs for Cadence CAD for a layout group(we are a IC > > design center). > > > I have a CBR(describes circ

Re: Basic Perl Questions

2010-02-03 Thread John W. Krahn
PolyPusher wrote: Hi All, Hello, I have some Perl experience but has been awhile. I mainly write SKILL lisp programs for Cadence CAD for a layout group(we are a IC design center). I have a CBR(describes circuit) file and want to open it, find the line in file Is it just one line or are t

Re: Basic Perl Questions

2010-02-03 Thread Jim Gibson
On 2/3/10 Wed Feb 3, 2010 6:44 AM, "PolyPusher" scribbled: > Hi All, > > I have some Perl experience but has been awhile. I mainly write > SKILL lisp programs for Cadence CAD for a layout group(we are a IC > design center). > > I have a CBR(describes circuit) file and want to open it, find

Basic Perl Questions

2010-02-03 Thread PolyPusher
Hi All, I have some Perl experience but has been awhile. I mainly write SKILL lisp programs for Cadence CAD for a layout group(we are a IC design center). I have a CBR(describes circuit) file and want to open it, find the line in file .SUBCKT __RE1321_4 HB_GND GSM_RX DCS_RX DCS_VRX GSM_VRX PCS

Re: Some few basic Perl questions

2002-11-24 Thread Jenda Krynicky
From: "Mystik gotan" <[EMAIL PROTECTED]> > Hiya, > > I got some basic Perl questions. Hope you don't mind answerring them? > > 1) What is the use of just putting $var; on 1 line? Example: > #!usr/bin/perl -wT > > # some code > $var; > &

Re: Some few basic Perl questions

2002-11-23 Thread dan
urther. it returns a "true value" to perl. it also claims to perl that the script is complete. dan "Mystik Gotan" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hiya, > > I got some basic Perl questions. Hope you don

RE: Some few basic Perl questions

2002-11-23 Thread Beau E. Cox
mber 23, 2002 11:19 AM To: [EMAIL PROTECTED] Subject: Some few basic Perl questions Hiya, I got some basic Perl questions. Hope you don't mind answerring them? 1) What is the use of just putting $var; on 1 line? Example: #!usr/bin/perl -wT # some code $var; Does this technique rescopes the v

Some few basic Perl questions

2002-11-23 Thread Mystik gotan
Hiya, I got some basic Perl questions. Hope you don't mind answerring them? 1) What is the use of just putting $var; on 1 line? Example: #!usr/bin/perl -wT # some code $var; Does this technique rescopes the variable? 2) Why is exit() or 1; used on the LAST line. I understand it being on